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