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