#[derive(Clone, Debug, PartialEq, Default, Serialize, Deserialize)]
pub struct ContractNftGenesisSummary {
#[serde(rename = "address", skip_serializing_if = "Option::is_none")]
pub address: Option<String>,
#[serde(rename = "sensibleId", skip_serializing_if = "Option::is_none")]
pub sensible_id: Option<String>,
#[serde(rename = "metaTxid", skip_serializing_if = "Option::is_none")]
pub meta_txid: Option<String>,
#[serde(rename = "metaOutputIndex", skip_serializing_if = "Option::is_none")]
pub meta_output_index: Option<i32>,
#[serde(rename = "tokenSupply", skip_serializing_if = "Option::is_none")]
pub token_supply: Option<i64>,
#[serde(rename = "count", skip_serializing_if = "Option::is_none")]
pub count: Option<i32>,
}
impl ContractNftGenesisSummary {
pub fn new() -> ContractNftGenesisSummary {
ContractNftGenesisSummary {
address: None,
sensible_id: None,
meta_txid: None,
meta_output_index: None,
token_supply: None,
count: None,
}
}
}