/** * 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 */ /** * The balance remaining in your account * @export * @interface Balance */ export interface Balance { /** * * @type {number} * @memberof Balance */ balance: number; } /** * Check if a given object implements the Balance interface. */ export declare function instanceOfBalance(value: object): boolean; export declare function BalanceFromJSON(json: any): Balance; export declare function BalanceFromJSONTyped(json: any, ignoreDiscriminator: boolean): Balance; export declare function BalanceToJSON(value?: Balance | null): any;