pub struct AccountAnnualRevenue {
pub amount: Option<i64>,
pub currency: Option<Currency>,
pub fiscal_year_end: Option<String>,
}
Fields§
§amount: Option<i64>
A non-negative integer representing the amount in the smallest currency unit.
currency: Option<Currency>
Three-letter ISO currency code, in lowercase. Must be a supported currency.
fiscal_year_end: Option<String>
The close-out date of the preceding fiscal year in ISO 8601 format. E.g. 2023-12-31 for the 31st of December, 2023.
Trait Implementations§
Source§impl Clone for AccountAnnualRevenue
impl Clone for AccountAnnualRevenue
Source§fn clone(&self) -> AccountAnnualRevenue
fn clone(&self) -> AccountAnnualRevenue
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 AccountAnnualRevenue
impl Debug for AccountAnnualRevenue
Source§impl Deserialize for AccountAnnualRevenue
impl Deserialize for AccountAnnualRevenue
Source§impl FromValueOpt for AccountAnnualRevenue
impl FromValueOpt for AccountAnnualRevenue
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for AccountAnnualRevenue
impl RefUnwindSafe for AccountAnnualRevenue
impl Send for AccountAnnualRevenue
impl Sync for AccountAnnualRevenue
impl Unpin for AccountAnnualRevenue
impl UnwindSafe for AccountAnnualRevenue
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