Struct AlertResponse

Source
pub struct AlertResponse {
Show 25 fields pub account: Option<String>, pub order_id: Option<i32>, pub alert_name: Option<String>, pub alert_message: Option<String>, pub alert_active: Option<i32>, pub alert_repeatable: Option<i32>, pub alert_email: Option<String>, pub alert_send_message: Option<i32>, pub tif: Option<String>, pub expire_time: Option<String>, pub order_status: Option<String>, pub outside_rth: Option<i32>, pub itws_orders_only: Option<i32>, pub alert_show_popup: Option<i32>, pub alert_triggered: Option<bool>, pub order_not_editable: Option<bool>, pub tool_id: Option<i32>, pub alert_play_audio: Option<String>, pub alert_mta_currency: Option<String>, pub alert_mta_defaults: Option<String>, pub time_zone: Option<String>, pub alert_default_type: Option<String>, pub condition_size: Option<i32>, pub condition_outside_rth: Option<i32>, pub conditions: Option<Vec<AlertResponseConditions>>,
}

Fields§

§account: Option<String>

account id

§order_id: Option<i32>§alert_name: Option<String>

name of alert

§alert_message: Option<String>

The message you want to receive via email or text message

§alert_active: Option<i32>

whether alert is active or not, so value can only be 0 or 1

§alert_repeatable: Option<i32>

whether alert is repeatable or not, so value can only be 0 or 1

§alert_email: Option<String>

email address to receive alert

§alert_send_message: Option<i32>

whether allowing to send email or not, so value can only be 0 or 1,

§tif: Option<String>

time in force, can only be GTC or GTD

§expire_time: Option<String>

format, YYYYMMDD-HH:mm:ss

§order_status: Option<String>

status of alert

§outside_rth: Option<i32>

value can only be 0 or 1, set to 1 if the alert can be triggered outside regular trading hours.

§itws_orders_only: Option<i32>

value can only be 0 or 1, set to 1 to enable the alert only in IBKR mobile

§alert_show_popup: Option<i32>

value can only be 0 or 1, set to 1 to allow to show alert in pop-ups

§alert_triggered: Option<bool>

whether the alert has been triggered

§order_not_editable: Option<bool>

whether the alert can be edited

§tool_id: Option<i32>

for MTA alert only, each user has a unique toolId and it will stay the same, do not send for normal alert

§alert_play_audio: Option<String>

audio message to play when alert is triggered

§alert_mta_currency: Option<String>

MTA alert only

§alert_mta_defaults: Option<String>

MTA alert only

§time_zone: Option<String>

MTA alert only

§alert_default_type: Option<String>

MTA alert only

§condition_size: Option<i32>

size of conditions array

§condition_outside_rth: Option<i32>

whether allowing the condition can be triggered outside of regular trading hours, 1 means allow

§conditions: Option<Vec<AlertResponseConditions>>

Implementations§

Trait Implementations§

Source§

impl Clone for AlertResponse

Source§

fn clone(&self) -> AlertResponse

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AlertResponse

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for AlertResponse

Source§

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 PartialEq for AlertResponse

Source§

fn eq(&self, other: &AlertResponse) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for AlertResponse

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl StructuralPartialEq for AlertResponse

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,

Source§

impl<T> ErasedDestructor for T
where T: 'static,