UNPKG

wallee

Version:
35 lines (34 loc) 1.38 kB
import type { SubscriptionProduct } from './SubscriptionProduct'; /** * * @export * @interface ProductListResponse */ export interface ProductListResponse { /** * An array containing the actual response objects. * @type {Array<SubscriptionProduct>} * @memberof ProductListResponse */ readonly data?: Array<SubscriptionProduct>; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof ProductListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof ProductListResponse */ readonly limit?: number; } /** * Check if a given object implements the ProductListResponse interface. */ export declare function instanceOfProductListResponse(value: object): value is ProductListResponse; export declare function ProductListResponseFromJSON(json: any): ProductListResponse; export declare function ProductListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductListResponse; export declare function ProductListResponseToJSON(json: any): ProductListResponse; export declare function ProductListResponseToJSONTyped(value?: Omit<ProductListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;