/** * 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. */ import type { Bank } from './Bank'; /** * * @export * @interface GetMoneyInBanksOutput */ export interface GetMoneyInBanksOutput { /** * * @type {{ [key: string]: Array; }} * @memberof GetMoneyInBanksOutput */ banks?: { [key: string]: Array; }; /** * * @type {Error} * @memberof GetMoneyInBanksOutput */ error?: Error; } /** * Check if a given object implements the GetMoneyInBanksOutput interface. */ export declare function instanceOfGetMoneyInBanksOutput(value: object): boolean; export declare function GetMoneyInBanksOutputFromJSON(json: any): GetMoneyInBanksOutput; export declare function GetMoneyInBanksOutputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInBanksOutput; export declare function GetMoneyInBanksOutputToJSON(value?: GetMoneyInBanksOutput | null): any;