pub struct BillingAlertTriggered {
pub alert: BillingAlert,
pub created: Timestamp,
pub customer: String,
pub livemode: bool,
pub value: i64,
}
Fields§
§alert: BillingAlert
§created: Timestamp
Time at which the object was created. Measured in seconds since the Unix epoch.
customer: String
ID of customer for which the alert triggered
livemode: bool
Has the value true
if the object exists in live mode or the value false
if the object exists in test mode.
value: i64
The value triggering the alert
Trait Implementations§
Source§impl Clone for BillingAlertTriggered
impl Clone for BillingAlertTriggered
Source§fn clone(&self) -> BillingAlertTriggered
fn clone(&self) -> BillingAlertTriggered
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 BillingAlertTriggered
impl Debug for BillingAlertTriggered
Source§impl Deserialize for BillingAlertTriggered
impl Deserialize for BillingAlertTriggered
Source§impl FromValueOpt for BillingAlertTriggered
impl FromValueOpt for BillingAlertTriggered
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for BillingAlertTriggered
impl RefUnwindSafe for BillingAlertTriggered
impl Send for BillingAlertTriggered
impl Sync for BillingAlertTriggered
impl Unpin for BillingAlertTriggered
impl UnwindSafe for BillingAlertTriggered
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