/** * 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 BalanceHistoryInput */ export interface BalanceHistoryInput { /** * Request balance at given time in UTC Unix timestamp * @type {string} * @memberof BalanceHistoryInput */ atDate?: string; } /** * Check if a given object implements the BalanceHistoryInput interface. */ export declare function instanceOfBalanceHistoryInput(value: object): boolean; export declare function BalanceHistoryInputFromJSON(json: any): BalanceHistoryInput; export declare function BalanceHistoryInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): BalanceHistoryInput; export declare function BalanceHistoryInputToJSON(value?: BalanceHistoryInput | null): any;