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