/** * 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 ExchangeTransferResponse */ export interface ExchangeTransferResponse { /** * * @type {string} * @memberof ExchangeTransferResponse */ id: string; /** * * @type {string} * @memberof ExchangeTransferResponse */ exchangeAccountId?: string; /** * Current status of the transaction * @type {string} * @memberof ExchangeTransferResponse */ status?: string; /** * the amount to transfer * @type {number} * @memberof ExchangeTransferResponse */ amount: number; /** * Chain symbol that funds are to be transferred in. * @type {string} * @memberof ExchangeTransferResponse */ currency: string; /** * ISO 8601 timestamp of when the transfer was created * @type {Date} * @memberof ExchangeTransferResponse */ createdAt?: Date; } export declare function ExchangeTransferResponseFromJSON(json: any): ExchangeTransferResponse; export declare function ExchangeTransferResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ExchangeTransferResponse; export declare function ExchangeTransferResponseToJSON(value?: ExchangeTransferResponse | null): any;