wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.44 kB
TypeScript
import type { SubscriptionSuspension } from './SubscriptionSuspension';
/**
*
* @export
* @interface SuspensionListResponse
*/
export interface SuspensionListResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionSuspension>}
* @memberof SuspensionListResponse
*/
readonly data?: Array<SubscriptionSuspension>;
/**
* 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<SuspensionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;