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