UNPKG

wallee

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