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