/** * 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 TransferDestination */ export interface TransferDestination { /** * Valid blockchain wallet address, must be an alphanumeric string (underscores allowed for chains like Midnight) * @type {string} * @memberof TransferDestination */ address: string; /** * List of tokens available for transfer to this destination * @type {Array} * @memberof TransferDestination */ tokens?: Array; } export declare function TransferDestinationFromJSON(json: any): TransferDestination; export declare function TransferDestinationFromJSONTyped(json: any, ignoreDiscriminator: boolean): TransferDestination; export declare function TransferDestinationToJSON(value?: TransferDestination | null): any;