/** * 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 { EWalletAccount } from './EWalletAccount'; /** * * @export * @interface EWalletAllOf */ export interface EWalletAllOf { /** * * @type {EWalletAccount} * @memberof EWalletAllOf */ account?: EWalletAccount; } /** * Check if a given object implements the EWalletAllOf interface. */ export declare function instanceOfEWalletAllOf(value: object): boolean; export declare function EWalletAllOfFromJSON(json: any): EWalletAllOf; export declare function EWalletAllOfFromJSONTyped(json: any, ignoreDiscriminator: boolean): EWalletAllOf; export declare function EWalletAllOfToJSON(value?: EWalletAllOf | null): any;