/**
 * Bluvo API
 * APIs to supercharge your crypto project.
 *
 * OpenAPI spec version: 0.0.3
 * Contact: help@bluvo.co
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */

import { HttpFile } from '../http/http';

export class WithdrawFundsRequest {
    /**
    * The asset symbol to withdraw (e.g., \'BTC\', \'ETH\')
    */
    'asset': string;
    /**
    * The amount to withdraw
    */
    'amount': number;
    /**
    * The blockchain address to send funds to
    */
    'address': string;
    /**
    * Optional memo/tag for cryptocurrencies that require it (e.g., XRP, XLM)
    */
    'tag'?: string;
    'params'?: any | null;

    static readonly discriminator: string | undefined = undefined;

    static readonly mapping: {[index: string]: string} | undefined = undefined;

    static readonly attributeTypeMap: Array<{name: string, baseName: string, type: string, format: string}> = [
        {
            "name": "asset",
            "baseName": "asset",
            "type": "string",
            "format": ""
        },
        {
            "name": "amount",
            "baseName": "amount",
            "type": "number",
            "format": ""
        },
        {
            "name": "address",
            "baseName": "address",
            "type": "string",
            "format": ""
        },
        {
            "name": "tag",
            "baseName": "tag",
            "type": "string",
            "format": ""
        },
        {
            "name": "params",
            "baseName": "params",
            "type": "any",
            "format": ""
        }    ];

    static getAttributeTypeMap() {
        return WithdrawFundsRequest.attributeTypeMap;
    }

    public constructor() {
    }
}
