/** * NOTE: This file is auto generated by Xendit. * Do not edit the class manually. * Improvements? Share your ideas at https://github.com/xendit/xendit-node */ import type { PaymentMethod } from './PaymentMethod'; /** * * @export * @interface PaymentMethodList */ export interface PaymentMethodList { /** * * @type {Array} * @memberof PaymentMethodList */ data: Array; /** * * @type {boolean} * @memberof PaymentMethodList */ hasMore?: boolean; } /** * Check if a given object implements the PaymentMethodList interface. */ export declare function instanceOfPaymentMethodList(value: object): boolean; export declare function PaymentMethodListFromJSON(json: any): PaymentMethodList; export declare function PaymentMethodListFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentMethodList; export declare function PaymentMethodListToJSON(value?: PaymentMethodList | null): any;