/** * 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 GetMoneyInIBANDetailsInput */ export interface GetMoneyInIBANDetailsInput { /** * UTC Unix Timestamp * @type {string} * @memberof GetMoneyInIBANDetailsInput */ updateDate: string; /** * End Date tUTC Unix Timestamp * @type {string} * @memberof GetMoneyInIBANDetailsInput */ updateEndDate: string; } /** * Check if a given object implements the GetMoneyInIBANDetailsInput interface. */ export declare function instanceOfGetMoneyInIBANDetailsInput(value: object): boolean; export declare function GetMoneyInIBANDetailsInputFromJSON(json: any): GetMoneyInIBANDetailsInput; export declare function GetMoneyInIBANDetailsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInIBANDetailsInput; export declare function GetMoneyInIBANDetailsInputToJSON(value?: GetMoneyInIBANDetailsInput | null): any;