pub struct Alert {
pub account: Option<String>,
pub alert_active: Option<AlertActivationRequestAlertActive>,
pub alert_name: Option<String>,
pub alert_repeatable: Option<AlertActivationRequestAlertActive>,
pub alert_triggered: Option<bool>,
pub order_id: Option<i32>,
pub order_time: Option<String>,
}Expand description
An array containing all alerts as separate objects.
Fields§
§account: Option<String>The account the alert was attributed to.
alert_active: Option<AlertActivationRequestAlertActive>Determines if the alert is active [1] or not [0]
alert_name: Option<String>The requested name for the alert.
alert_repeatable: Option<AlertActivationRequestAlertActive>Confirms if the alert is enabled to occur more than once.
alert_triggered: Option<bool>Confirms if the order is triggered or not.
order_id: Option<i32>The order id (alert id)
order_time: Option<String>UTC-formatted time of the alert’s creation.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Alert
impl<'de> Deserialize<'de> for Alert
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
impl StructuralPartialEq for Alert
Auto Trait Implementations§
impl Freeze for Alert
impl RefUnwindSafe for Alert
impl Send for Alert
impl Sync for Alert
impl Unpin for Alert
impl UnsafeUnpin for Alert
impl UnwindSafe for Alert
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