import type { WebhookUrl } from './WebhookUrl'; /** * * @export * @interface WebhookURLSearchResponse */ export interface WebhookURLSearchResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof WebhookURLSearchResponse */ readonly data?: Array; /** * The number of skipped objects. * @type {number} * @memberof WebhookURLSearchResponse */ readonly offset?: number; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof WebhookURLSearchResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof WebhookURLSearchResponse */ readonly limit?: number; } /** * Check if a given object implements the WebhookURLSearchResponse interface. */ export declare function instanceOfWebhookURLSearchResponse(value: object): value is WebhookURLSearchResponse; export declare function WebhookURLSearchResponseFromJSON(json: any): WebhookURLSearchResponse; export declare function WebhookURLSearchResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): WebhookURLSearchResponse; export declare function WebhookURLSearchResponseToJSON(json: any): WebhookURLSearchResponse; export declare function WebhookURLSearchResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;