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