wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.49 kB
TypeScript
import type { WebhookListener } from './WebhookListener';
/**
*
* @export
* @interface WebhookListenerListResponse
*/
export interface WebhookListenerListResponse {
/**
* An array containing the actual response objects.
* @type {Array<WebhookListener>}
* @memberof WebhookListenerListResponse
*/
readonly data?: Array<WebhookListener>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof WebhookListenerListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof WebhookListenerListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the WebhookListenerListResponse interface.
*/
export declare function instanceOfWebhookListenerListResponse(value: object): value is WebhookListenerListResponse;
export declare function WebhookListenerListResponseFromJSON(json: any): WebhookListenerListResponse;
export declare function WebhookListenerListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookListenerListResponse;
export declare function WebhookListenerListResponseToJSON(json: any): WebhookListenerListResponse;
export declare function WebhookListenerListResponseToJSONTyped(value?: Omit<WebhookListenerListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;