wallee
Version:
TypeScript/JavaScript client for wallee
35 lines (34 loc) • 1.57 kB
TypeScript
import type { SubscriptionVersion } from './SubscriptionVersion';
/**
*
* @export
* @interface SubscriptionVersionListResponse
*/
export interface SubscriptionVersionListResponse {
/**
* An array containing the actual response objects.
* @type {Array<SubscriptionVersion>}
* @memberof SubscriptionVersionListResponse
*/
readonly data?: Array<SubscriptionVersion>;
/**
* Whether there are more objects available after this set. If false, there are no more objects to retrieve.
* @type {boolean}
* @memberof SubscriptionVersionListResponse
*/
readonly hasMore?: boolean;
/**
* The applied limit on the number of objects returned.
* @type {number}
* @memberof SubscriptionVersionListResponse
*/
readonly limit?: number;
}
/**
* Check if a given object implements the SubscriptionVersionListResponse interface.
*/
export declare function instanceOfSubscriptionVersionListResponse(value: object): value is SubscriptionVersionListResponse;
export declare function SubscriptionVersionListResponseFromJSON(json: any): SubscriptionVersionListResponse;
export declare function SubscriptionVersionListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SubscriptionVersionListResponse;
export declare function SubscriptionVersionListResponseToJSON(json: any): SubscriptionVersionListResponse;
export declare function SubscriptionVersionListResponseToJSONTyped(value?: Omit<SubscriptionVersionListResponse, 'data' | 'hasMore' | 'limit'> | null, ignoreDiscriminator?: boolean): any;