interface DealsCatalogResponse {
    asOf: string;
    items: DealItem[];
    nextCursor: null | string;
    total: number;
}

Properties

asOf: string
items: DealItem[]
nextCursor: null | string
total: number