/** * 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 GetMoneyInTransDetailsInput */ export interface GetMoneyInTransDetailsInput { /** * Money-In ID * @type {number} * @memberof GetMoneyInTransDetailsInput */ transactionId?: number; /** * Money-In Comment * @type {string} * @memberof GetMoneyInTransDetailsInput */ transactionComment?: string; /** * Token from wkToken variable * @type {string} * @memberof GetMoneyInTransDetailsInput */ transactionMerchantToken?: string; /** * UTC Unix timestamp, in order to return transactions initialized after it * @type {string} * @memberof GetMoneyInTransDetailsInput */ startDate?: string; /** * UTC Unix timestamp, in order to return transactions initialized before it * @type {string} * @memberof GetMoneyInTransDetailsInput */ endDate?: string; } /** * Check if a given object implements the GetMoneyInTransDetailsInput interface. */ export declare function instanceOfGetMoneyInTransDetailsInput(value: object): boolean; export declare function GetMoneyInTransDetailsInputFromJSON(json: any): GetMoneyInTransDetailsInput; export declare function GetMoneyInTransDetailsInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): GetMoneyInTransDetailsInput; export declare function GetMoneyInTransDetailsInputToJSON(value?: GetMoneyInTransDetailsInput | null): any;