UNPKG

wallee

Version:
41 lines (40 loc) 1.69 kB
import type { WebhookListener } from './WebhookListener'; /** * * @export * @interface WebhookListenerSearchResponse */ export interface WebhookListenerSearchResponse { /** * An array containing the actual response objects. * @type {Array<WebhookListener>} * @memberof WebhookListenerSearchResponse */ readonly data?: Array<WebhookListener>; /** * The number of skipped objects. * @type {number} * @memberof WebhookListenerSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof WebhookListenerSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof WebhookListenerSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the WebhookListenerSearchResponse interface. */ export declare function instanceOfWebhookListenerSearchResponse(value: object): value is WebhookListenerSearchResponse; export declare function WebhookListenerSearchResponseFromJSON(json: any): WebhookListenerSearchResponse; export declare function WebhookListenerSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookListenerSearchResponse; export declare function WebhookListenerSearchResponseToJSON(json: any): WebhookListenerSearchResponse; export declare function WebhookListenerSearchResponseToJSONTyped(value?: Omit<WebhookListenerSearchResponse, 'data' | 'offset' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;