pub struct KytAlertDetail {
pub alert_amount: Option<String>,
pub alert_level: Option<String>,
pub category_id: Option<i64>,
pub exposure_type: Option<String>,
pub external_id: Option<String>,
pub memo: Option<String>,
pub service: Option<String>,
}Expand description
KytAlertDetail
JSON schema
{
"type": "object",
"properties": {
"alertAmount": {
"description": "DTO.KYT.ALERT_DETAIL.ALERT_AMOUNT",
"examples": [
"8868.24"
],
"type": "string"
},
"alertLevel": {
"description": "DTO.KYT.ALERT_DETAIL.ALERT_LEVEL",
"examples": [
"SEVERE"
],
"type": "string"
},
"categoryId": {
"description": "DTO.KYT.ALERT_DETAIL.CATEGORY_ID",
"examples": [
3
],
"type": "integer",
"format": "int64"
},
"exposureType": {
"description": "DTO.KYT.ALERT_DETAIL.EXPOSURE_TYPE",
"examples": [
"DIRECT"
],
"type": "string"
},
"externalId": {
"description": "DTO.KYT.ALERT_DETAIL.EXTERNAL_ID",
"examples": [
"b7d17de0-f890-11ec-83bd-c37b1b9f5365"
],
"type": "string"
},
"memo": {
"description": "DTO.KYT.ALERT_DETAIL.MEMO",
"type": "string"
},
"service": {
"description": "DTO.KYT.ALERT_DETAIL.SERVICE",
"examples": [
"OFAC SDN Blender.io 2022-05-06"
],
"type": "string"
}
}
}Fields§
§alert_amount: Option<String>DTO.KYT.ALERT_DETAIL.ALERT_AMOUNT
alert_level: Option<String>DTO.KYT.ALERT_DETAIL.ALERT_LEVEL
category_id: Option<i64>DTO.KYT.ALERT_DETAIL.CATEGORY_ID
exposure_type: Option<String>DTO.KYT.ALERT_DETAIL.EXPOSURE_TYPE
external_id: Option<String>DTO.KYT.ALERT_DETAIL.EXTERNAL_ID
memo: Option<String>DTO.KYT.ALERT_DETAIL.MEMO
service: Option<String>DTO.KYT.ALERT_DETAIL.SERVICE
Implementations§
Source§impl KytAlertDetail
impl KytAlertDetail
pub fn builder() -> KytAlertDetail
Trait Implementations§
Source§impl Clone for KytAlertDetail
impl Clone for KytAlertDetail
Source§fn clone(&self) -> KytAlertDetail
fn clone(&self) -> KytAlertDetail
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 KytAlertDetail
impl Debug for KytAlertDetail
Source§impl Default for KytAlertDetail
impl Default for KytAlertDetail
Source§impl<'de> Deserialize<'de> for KytAlertDetail
impl<'de> Deserialize<'de> for KytAlertDetail
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<&KytAlertDetail> for KytAlertDetail
impl From<&KytAlertDetail> for KytAlertDetail
Source§fn from(value: &KytAlertDetail) -> Self
fn from(value: &KytAlertDetail) -> Self
Converts to this type from the input type.
Source§impl From<KytAlertDetail> for KytAlertDetail
impl From<KytAlertDetail> for KytAlertDetail
Source§fn from(value: KytAlertDetail) -> Self
fn from(value: KytAlertDetail) -> Self
Converts to this type from the input type.
Source§impl Serialize for KytAlertDetail
impl Serialize for KytAlertDetail
Source§impl TryFrom<KytAlertDetail> for KytAlertDetail
impl TryFrom<KytAlertDetail> for KytAlertDetail
Source§type Error = ConversionError
type Error = ConversionError
The type returned in the event of a conversion error.
Source§fn try_from(value: KytAlertDetail) -> Result<Self, ConversionError>
fn try_from(value: KytAlertDetail) -> Result<Self, ConversionError>
Performs the conversion.
Auto Trait Implementations§
impl Freeze for KytAlertDetail
impl RefUnwindSafe for KytAlertDetail
impl Send for KytAlertDetail
impl Sync for KytAlertDetail
impl Unpin for KytAlertDetail
impl UnsafeUnpin for KytAlertDetail
impl UnwindSafe for KytAlertDetail
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