/** * 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 */ /** * * @export * @interface PaymentMethodAction */ export interface PaymentMethodAction { /** * * @type {string} * @memberof PaymentMethodAction */ action?: string; /** * * @type {string} * @memberof PaymentMethodAction */ method?: string; /** * * @type {string} * @memberof PaymentMethodAction */ url?: string; /** * * @type {string} * @memberof PaymentMethodAction */ urlType?: string; } /** * Check if a given object implements the PaymentMethodAction interface. */ export declare function instanceOfPaymentMethodAction(value: object): boolean; export declare function PaymentMethodActionFromJSON(json: any): PaymentMethodAction; export declare function PaymentMethodActionFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaymentMethodAction; export declare function PaymentMethodActionToJSON(value?: PaymentMethodAction | null): any;