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