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