/** * 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 { EwalletType } from './EwalletType'; /** * An object representing e-wallet details for invoices. * @export * @interface Ewallet */ export interface Ewallet { /** * * @type {EwalletType} * @memberof Ewallet */ ewalletType: EwalletType; } /** * Check if a given object implements the Ewallet interface. */ export declare function instanceOfEwallet(value: object): boolean; export declare function EwalletFromJSON(json: any): Ewallet; export declare function EwalletFromJSONTyped(json: any, ignoreDiscriminator: boolean): Ewallet; export declare function EwalletToJSON(value?: Ewallet | null): any;