/** * 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. */ /** * Additional metadata about the asset transfer * @export * @interface WalletTransactionAssetTransferMetadata */ export interface WalletTransactionAssetTransferMetadata { /** * Name of the asset * @type {string} * @memberof WalletTransactionAssetTransferMetadata */ name?: string; /** * Symbol of the asset * @type {string} * @memberof WalletTransactionAssetTransferMetadata */ symbol?: string; /** * Decimals of the asset * @type {number} * @memberof WalletTransactionAssetTransferMetadata */ decimals?: number; /** * Logo URI of the asset * @type {string} * @memberof WalletTransactionAssetTransferMetadata */ imageUri?: string; } export declare function WalletTransactionAssetTransferMetadataFromJSON(json: any): WalletTransactionAssetTransferMetadata; export declare function WalletTransactionAssetTransferMetadataFromJSONTyped(json: any, ignoreDiscriminator: boolean): WalletTransactionAssetTransferMetadata; export declare function WalletTransactionAssetTransferMetadataToJSON(value?: WalletTransactionAssetTransferMetadata | null): any;