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