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