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