/** * 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 GetMoneyInSddInput */ export interface GetMoneyInSddInput { /** * Unique ID Generated by your Server * @type {string} * @memberof GetMoneyInSddInput */ reference?: string; /** * UTC Unix Timestamp * @type {string} * @memberof GetMoneyInSddInput */ updateDate?: string; /** * End Date UTC Unix Timestamp * @type {string} * @memberof GetMoneyInSddInput */ updateEndDate?: string; } /** * Check if a given object implements the GetMoneyInSddInput interface. */ export declare function instanceOfGetMoneyInSddInput(value: object): boolean; export declare function GetMoneyInSddInputFromJSON(json: any): GetMoneyInSddInput; export declare function GetMoneyInSddInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInSddInput; export declare function GetMoneyInSddInputToJSON(value?: GetMoneyInSddInput | null): any;