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