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