/** * 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 AssetTransfer */ export interface AssetTransfer { /** * Raw token amount before decimal adjustment * @type {string} * @memberof AssetTransfer */ rawValue?: string; /** * Human-readable summary of the transfer * @type {string} * @memberof AssetTransfer */ summary?: string; /** * Estimated USD value of the transferred amount * @type {string} * @memberof AssetTransfer */ usdPrice?: string; /** * Decimal-adjusted token amount * @type {string} * @memberof AssetTransfer */ value?: string; } export declare function AssetTransferFromJSON(json: any): AssetTransfer; export declare function AssetTransferFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetTransfer; export declare function AssetTransferToJSON(value?: AssetTransfer | null): any;