wallee
Version:
TypeScript/JavaScript client for wallee
41 lines (40 loc) • 1.58 kB
TypeScript
import type { Subscriber } from './Subscriber';
/**
*
* @export
* @interface SubscriberSearchResponse
*/
export interface SubscriberSearchResponse {
/**
* An array containing the actual response objects.
* @type {Array<Subscriber>}
* @memberof SubscriberSearchResponse
*/
readonly data?: Array<Subscriber>;
/**
* The number of skipped objects.
* @type {number}
* @memberof SubscriberSearchResponse
*/
readonly offset?: number;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof SubscriberSearchResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof SubscriberSearchResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the SubscriberSearchResponse interface.
*/
export declare function instanceOfSubscriberSearchResponse(value: object): value is SubscriberSearchResponse;
export declare function SubscriberSearchResponseFromJSON(json: any): SubscriberSearchResponse;
export declare function SubscriberSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriberSearchResponse;
export declare function SubscriberSearchResponseToJSON(json: any): SubscriberSearchResponse;
export declare function SubscriberSearchResponseToJSONTyped(value?: Omit<SubscriberSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;