/** * 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 { TransferDestination } from './TransferDestination'; /** * * @export * @interface TransferDestinationResponse */ export interface TransferDestinationResponse { /** * * @type {Array} * @memberof TransferDestinationResponse */ destinations: Array; /** * this variable represents if the exchange has a concept of whitelists. If false, then all addresses are accepted and there is no whitelist. * @type {boolean} * @memberof TransferDestinationResponse */ enforcesAddressWhitelist: boolean; } export declare function TransferDestinationResponseFromJSON(json: any): TransferDestinationResponse; export declare function TransferDestinationResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferDestinationResponse; export declare function TransferDestinationResponseToJSON(value?: TransferDestinationResponse | null): any;