import type { PaymentProcessor } from './PaymentProcessor'; /** * * @export * @interface PaymentProcessorListResponse */ export interface PaymentProcessorListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof PaymentProcessorListResponse */ readonly data?: Array; /** * 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 | null, ignoreDiscriminator?: boolean): any;