/** * 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 { AssetExposureSpenderToInfo } from './AssetExposureSpenderToInfo'; /** * * @export * @interface AssetExposure */ export interface AssetExposure { /** * * @type {Asset} * @memberof AssetExposure */ asset: Asset; /** * Mapping of spender addresses to their approval details * @type {{ [key: string]: AssetExposureSpenderToInfo; }} * @memberof AssetExposure */ spenderToInfo: { [key: string]: AssetExposureSpenderToInfo; }; } export declare function AssetExposureFromJSON(json: any): AssetExposure; export declare function AssetExposureFromJSONTyped(json: any, ignoreDiscriminator: boolean): AssetExposure; export declare function AssetExposureToJSON(value?: AssetExposure | null): any;