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