/** * 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 GetMoneyInBanksInput */ export interface GetMoneyInBanksInput { /** * Comma separated string of ISO Alpha-2 country codes. * Available country codes include: * * @type {string} * @memberof GetMoneyInBanksInput */ countryCodes?: string; } /** * Check if a given object implements the GetMoneyInBanksInput interface. */ export declare function instanceOfGetMoneyInBanksInput(value: object): boolean; export declare function GetMoneyInBanksInputFromJSON(json: any): GetMoneyInBanksInput; export declare function GetMoneyInBanksInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInBanksInput; export declare function GetMoneyInBanksInputToJSON(value?: GetMoneyInBanksInput | null): any;