import type { PaymentProcessorConfiguration } from './PaymentProcessorConfiguration'; /** * * @export * @interface PaymentProcessorConfigurationListResponse */ export interface PaymentProcessorConfigurationListResponse { /** * An array containing the actual response objects. * @type {Array} * @memberof PaymentProcessorConfigurationListResponse */ readonly data?: Array; /** * Whether there are more objects available after this set. If false, there are no more objects to retrieve. * @type {boolean} * @memberof PaymentProcessorConfigurationListResponse */ readonly hasMore?: boolean; /** * The applied limit on the number of objects returned. * @type {number} * @memberof PaymentProcessorConfigurationListResponse */ readonly limit?: number; } /** * Check if a given object implements the PaymentProcessorConfigurationListResponse interface. */ export declare function instanceOfPaymentProcessorConfigurationListResponse(value: object): value is PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseFromJSON(json: any): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseToJSON(json: any): PaymentProcessorConfigurationListResponse; export declare function PaymentProcessorConfigurationListResponseToJSONTyped(value?: Omit | null, ignoreDiscriminator?: boolean): any;