pub struct KytAddressIdentification {
pub address_name: Option<String>,
pub category_id: Option<i64>,
pub description: Option<String>,
}Expand description
KytAddressIdentification
JSON schema
{
"type": "object",
"properties": {
"addressName": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.ADDRESS_NAME",
"examples": [
"SANCTIONS: OFAC SDN: Xiaobing Yan"
],
"type": "string"
},
"categoryId": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.CATEGORY_ID",
"examples": [
3
],
"type": "integer",
"format": "int64"
},
"description": {
"description": "DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.DESCRIPTION",
"examples": [
"This specific address 12QtD5BFwRsdNsAZY76UVE1xyCGNTojH9h within the cluster has been identified..."
],
"type": "string"
}
}
}Fields§
§address_name: Option<String>DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.ADDRESS_NAME
category_id: Option<i64>DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.CATEGORY_ID
description: Option<String>DTO.KYT.CHAINALYSIS_ADDRESS_IDENTIFICATION.DESCRIPTION
Implementations§
Source§impl KytAddressIdentification
impl KytAddressIdentification
pub fn builder() -> KytAddressIdentification
Trait Implementations§
Source§impl Clone for KytAddressIdentification
impl Clone for KytAddressIdentification
Source§fn clone(&self) -> KytAddressIdentification
fn clone(&self) -> KytAddressIdentification
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for KytAddressIdentification
impl Debug for KytAddressIdentification
Source§impl Default for KytAddressIdentification
impl Default for KytAddressIdentification
Source§impl<'de> Deserialize<'de> for KytAddressIdentification
impl<'de> Deserialize<'de> for KytAddressIdentification
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl From<&KytAddressIdentification> for KytAddressIdentification
impl From<&KytAddressIdentification> for KytAddressIdentification
Source§fn from(value: &KytAddressIdentification) -> Self
fn from(value: &KytAddressIdentification) -> Self
Converts to this type from the input type.
Source§impl From<KytAddressIdentification> for KytAddressIdentification
impl From<KytAddressIdentification> for KytAddressIdentification
Source§fn from(value: KytAddressIdentification) -> Self
fn from(value: KytAddressIdentification) -> Self
Converts to this type from the input type.
Source§impl Serialize for KytAddressIdentification
impl Serialize for KytAddressIdentification
Source§impl TryFrom<KytAddressIdentification> for KytAddressIdentification
impl TryFrom<KytAddressIdentification> for KytAddressIdentification
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: KytAddressIdentification) -> Result<Self, ConversionError>
fn try_from(value: KytAddressIdentification) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KytAddressIdentification
impl RefUnwindSafe for KytAddressIdentification
impl Send for KytAddressIdentification
impl Sync for KytAddressIdentification
impl Unpin for KytAddressIdentification
impl UnsafeUnpin for KytAddressIdentification
impl UnwindSafe for KytAddressIdentification
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more