@@ -10,25 +10,25 @@ namespace Bitget.Net.Objects.Models.V2
1010 public record BitgetAsset
1111 {
1212 /// <summary>
13- /// Asset id
13+ /// ["<c>coinId</c>"] Asset id
1414 /// </summary>
1515 [ JsonPropertyName ( "coinId" ) ]
1616 public string AssetId { get ; set ; } = string . Empty ;
1717
1818 /// <summary>
19- /// Asset name
19+ /// ["<c>coin</c>"] Asset name
2020 /// </summary>
2121 [ JsonPropertyName ( "coin" ) ]
2222 public string Name { get ; set ; } = string . Empty ;
2323
2424 /// <summary>
25- /// Is the asset transferable
25+ /// ["<c>transfer</c>"] Is the asset transferable
2626 /// </summary>
2727 [ JsonPropertyName ( "transfer" ) ]
2828 public bool Transferable { get ; set ; }
2929
3030 /// <summary>
31- /// Supported networks
31+ /// ["<c>chains</c>"] Supported networks
3232 /// </summary>
3333 [ JsonPropertyName ( "chains" ) ]
3434 public BitgetAssetNetwork [ ] Networks { get ; set ; } = Array . Empty < BitgetAssetNetwork > ( ) ;
@@ -41,72 +41,72 @@ public record BitgetAsset
4141 public record BitgetAssetNetwork
4242 {
4343 /// <summary>
44- /// Network name
44+ /// ["<c>chain</c>"] Network name
4545 /// </summary>
4646 [ JsonPropertyName ( "chain" ) ]
4747 public string Network { get ; set ; } = string . Empty ;
4848 /// <summary>
49- /// Whether a tag is needed for withdrawals
49+ /// ["<c>needTag</c>"] Whether a tag is needed for withdrawals
5050 /// </summary>
5151 [ JsonPropertyName ( "needTag" ) ]
5252 public bool NeedsTag { get ; set ; }
5353 /// <summary>
54- /// Whether the asset is withdrawable
54+ /// ["<c>withdrawable</c>"] Whether the asset is withdrawable
5555 /// </summary>
5656 [ JsonPropertyName ( "withdrawable" ) ]
5757 public bool Withdrawable { get ; set ; }
5858 /// <summary>
59- /// Whether the asset is depositable
59+ /// ["<c>rechargeable</c>"] Whether the asset is depositable
6060 /// </summary>
6161 [ JsonPropertyName ( "rechargeable" ) ]
6262 public bool Depositable { get ; set ; }
6363 /// <summary>
64- /// Withdrawal fee
64+ /// ["<c>withdrawFee</c>"] Withdrawal fee
6565 /// </summary>
6666 [ JsonPropertyName ( "withdrawFee" ) ]
6767 public decimal WithdrawFee { get ; set ; }
6868 /// <summary>
69- /// Extra withdrawal fee
69+ /// ["<c>extraWithdrawFee</c>"] Extra withdrawal fee
7070 /// </summary>
7171 [ JsonPropertyName ( "extraWithdrawFee" ) ]
7272 public decimal ExtraWithdrawFee { get ; set ; }
7373 /// <summary>
74- /// Deposit confirmations needed
74+ /// ["<c>depositConfirm</c>"] Deposit confirmations needed
7575 /// </summary>
7676 [ JsonPropertyName ( "depositConfirm" ) , JsonConverter ( typeof ( IntConverter ) ) ]
7777 public int ? DepositConfirm { get ; set ; }
7878 /// <summary>
79- /// Withdrawal confirmations
79+ /// ["<c>withdrawConfirm</c>"] Withdrawal confirmations
8080 /// </summary>
8181 [ JsonPropertyName ( "withdrawConfirm" ) , JsonConverter ( typeof ( IntConverter ) ) ]
8282 public int ? WithdrawConfirm { get ; set ; }
8383 /// <summary>
84- /// Minimal deposit quantity
84+ /// ["<c>minDepositAmount</c>"] Minimal deposit quantity
8585 /// </summary>
8686 [ JsonPropertyName ( "minDepositAmount" ) ]
8787 public decimal MinDepositQuantity { get ; set ; }
8888 /// <summary>
89- /// Minimal withdrawal quantity
89+ /// ["<c>minWithdrawAmount</c>"] Minimal withdrawal quantity
9090 /// </summary>
9191 [ JsonPropertyName ( "minWithdrawAmount" ) ]
9292 public decimal MinWithdrawQuantity { get ; set ; }
9393 /// <summary>
94- /// Browser url
94+ /// ["<c>browserUrl</c>"] Browser url
9595 /// </summary>
9696 [ JsonPropertyName ( "browserUrl" ) ]
9797 public string ? BrowserUrl { get ; set ; }
9898 /// <summary>
99- /// Contract address
99+ /// ["<c>contractAddress</c>"] Contract address
100100 /// </summary>
101101 [ JsonPropertyName ( "contractAddress" ) ]
102102 public string ? ContractAddress { get ; set ; }
103103 /// <summary>
104- /// If not null, withdrawal quantities should be a multiple of this
104+ /// ["<c>withdrawStep</c>"] If not null, withdrawal quantities should be a multiple of this
105105 /// </summary>
106106 [ JsonPropertyName ( "withdrawStep" ) ]
107107 public decimal WithdrawQuantityStep { get ; set ; }
108108 /// <summary>
109- /// Decimal places of withdrawal quantity
109+ /// ["<c>withdrawMinScale</c>"] Decimal places of withdrawal quantity
110110 /// </summary>
111111 [ JsonPropertyName ( "withdrawMinScale" ) , JsonConverter ( typeof ( IntConverter ) ) ]
112112 public int ? WithdrawQuantityPrecision { get ; set ; }
0 commit comments