/** * Dashboard API * Dashboard API documentation * * The version of the OpenAPI document: 1.0.0 * * * 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 ExchangeTransaction */ export interface ExchangeTransaction { /** * * @type {string} * @memberof ExchangeTransaction */ transactionId?: string; /** * * @type {string} * @memberof ExchangeTransaction */ transactionHash?: string; /** * Current status of the transaction * @type {string} * @memberof ExchangeTransaction */ status?: string; /** * the amount transfered * @type {number} * @memberof ExchangeTransaction */ amount?: number; /** * Chain symbol that funds were transfered in. * @type {string} * @memberof ExchangeTransaction */ currency?: string; /** * ISO 8601 timestamp of when the transaction was created * @type {Date} * @memberof ExchangeTransaction */ createdAt?: Date; } export declare function ExchangeTransactionFromJSON(json: any): ExchangeTransaction; export declare function ExchangeTransactionFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeTransaction; export declare function ExchangeTransactionToJSON(value?: ExchangeTransaction | null): any;