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