/** * Lemonway DirectKit API 2.0 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * * @export * @interface BalanceHistoryOutput */ export interface BalanceHistoryOutput { /** * Payment account balance * @type {number} * @memberof BalanceHistoryOutput */ balance?: number; /** * * @type {Error} * @memberof BalanceHistoryOutput */ error?: Error; } /** * Check if a given object implements the BalanceHistoryOutput interface. */ export declare function instanceOfBalanceHistoryOutput(value: object): boolean; export declare function BalanceHistoryOutputFromJSON(json: any): BalanceHistoryOutput; export declare function BalanceHistoryOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceHistoryOutput; export declare function BalanceHistoryOutputToJSON(value?: BalanceHistoryOutput | null): any;