Skip to main content

bybit/models/
deposit_address_chain_info.rs

1use crate::prelude::*;
2
3/// Deposit address chain information
4#[derive(Debug, Serialize, Deserialize, Clone)]
5pub struct DepositAddressChainInfo {
6    /// Chain type
7    #[serde(rename = "chainType")]
8    pub chain_type: String,
9
10    /// The address for deposit
11    #[serde(rename = "addressDeposit")]
12    pub address_deposit: String,
13
14    /// Tag of deposit
15    #[serde(rename = "tagDeposit")]
16    pub tag_deposit: String,
17
18    /// Chain
19    pub chain: String,
20
21    /// The deposit limit for this coin in this chain. `"-1"` means no limit
22    #[serde(rename = "batchReleaseLimit")]
23    pub batch_release_limit: String,
24
25    /// The contract address of the coin. Only display last 6 characters, if there is no contract address, it shows `""`
26    #[serde(rename = "contractAddress")]
27    pub contract_address: String,
28}