pub struct KytWithdrawalAddressIdentificationsResponse {
pub chainalysis_identifications: Vec<KytAddressIdentification>,
pub custom_addresses: Vec<Value>,
}Expand description
KytWithdrawalAddressIdentificationsResponse
JSON schema
{
"type": "object",
"properties": {
"chainalysisIdentifications": {
"description": "DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CHAINALYSIS_IDENTIFICATIONS",
"type": "array",
"items": {
"$ref": "#/components/schemas/KytAddressIdentification"
}
},
"customAddresses": {
"description": "DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CUSTOM_ADDRESSES",
"type": "array",
"items": {}
}
}
}Fields§
§chainalysis_identifications: Vec<KytAddressIdentification>DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CHAINALYSIS_IDENTIFICATIONS
custom_addresses: Vec<Value>DTO.KYT.WITHDRAWAL_ADDRESS_IDENTIFICATIONS_RESPONSE.CUSTOM_ADDRESSES
Implementations§
Trait Implementations§
Source§impl Clone for KytWithdrawalAddressIdentificationsResponse
impl Clone for KytWithdrawalAddressIdentificationsResponse
Source§fn clone(&self) -> KytWithdrawalAddressIdentificationsResponse
fn clone(&self) -> KytWithdrawalAddressIdentificationsResponse
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<'de> Deserialize<'de> for KytWithdrawalAddressIdentificationsResponse
impl<'de> Deserialize<'de> for KytWithdrawalAddressIdentificationsResponse
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<&KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
impl From<&KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
Source§fn from(value: &KytWithdrawalAddressIdentificationsResponse) -> Self
fn from(value: &KytWithdrawalAddressIdentificationsResponse) -> Self
Converts to this type from the input type.
Source§impl From<KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
impl From<KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
Source§fn from(value: KytWithdrawalAddressIdentificationsResponse) -> Self
fn from(value: KytWithdrawalAddressIdentificationsResponse) -> Self
Converts to this type from the input type.
Source§impl TryFrom<KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
impl TryFrom<KytWithdrawalAddressIdentificationsResponse> for KytWithdrawalAddressIdentificationsResponse
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(
value: KytWithdrawalAddressIdentificationsResponse,
) -> Result<Self, ConversionError>
fn try_from( value: KytWithdrawalAddressIdentificationsResponse, ) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KytWithdrawalAddressIdentificationsResponse
impl RefUnwindSafe for KytWithdrawalAddressIdentificationsResponse
impl Send for KytWithdrawalAddressIdentificationsResponse
impl Sync for KytWithdrawalAddressIdentificationsResponse
impl Unpin for KytWithdrawalAddressIdentificationsResponse
impl UnsafeUnpin for KytWithdrawalAddressIdentificationsResponse
impl UnwindSafe for KytWithdrawalAddressIdentificationsResponse
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