/** * 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. */ import { Asset } from './Asset'; import { AssetTransfer } from './AssetTransfer'; /** * * @export * @interface AssetDiff */ export interface AssetDiff { /** * * @type {Asset} * @memberof AssetDiff */ asset: Asset; /** * List of incoming asset transfers * @type {Array} * @memberof AssetDiff */ transferIn: Array; /** * List of outgoing asset transfers * @type {Array} * @memberof AssetDiff */ transferOut: Array; } export declare function AssetDiffFromJSON(json: any): AssetDiff; export declare function AssetDiffFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetDiff; export declare function AssetDiffToJSON(value?: AssetDiff | null): any;