/** * 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 TransactionsHistoryInput */ export interface TransactionsHistoryInput { /** * UTC Unix timestamp * In order to return transactions initialized after startDate. * If the payment account is a SC Wallet then this value is mandatory. * @type {string} * @memberof TransactionsHistoryInput */ startDate?: string; /** * UTC Unix timestamp * In order to return transactions initialized before endDate. * If the payment account is a SC Wallet then this value is mandatory and the time span cannot exceed 1 week. * @type {string} * @memberof TransactionsHistoryInput */ endDate?: string; /** * UTC Unix timestamp * In order to return transactions Executed after endDate. * If the payment account is a SC Wallet then this value is mandatory and the time span cannot exceed 1 week. * @type {string} * @memberof TransactionsHistoryInput */ executionDateStart?: string; /** * UTC Unix timestamp * In order to return transactions Executed before endDate * If the payment account is a SC Wallet then this value is mandatory and the time span cannot exceed 1 week. * @type {string} * @memberof TransactionsHistoryInput */ executionDateEnd?: string; } /** * Check if a given object implements the TransactionsHistoryInput interface. */ export declare function instanceOfTransactionsHistoryInput(value: object): boolean; export declare function TransactionsHistoryInputFromJSON(json: any): TransactionsHistoryInput; export declare function TransactionsHistoryInputFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransactionsHistoryInput; export declare function TransactionsHistoryInputToJSON(value?: TransactionsHistoryInput | null): any;