pub struct Billing {
pub end_time: Option<String>,
pub start_time: Option<String>,
pub customer_id: Option<Box<String>>,
pub vendor_state: Option<String>,
pub status: Option<Box<BillingStatus>>,
pub total: Option<Box<BillingTotal>>,
pub regions: Option<HashMap<String, BillingRegions>>,
}
Fields§
§end_time: Option<String>
Date and time in ISO 8601 format.
start_time: Option<String>
Date and time in ISO 8601 format.
customer_id: Option<Box<String>>
§vendor_state: Option<String>
The current state of our third-party billing vendor. One of up
or down
.
status: Option<Box<BillingStatus>>
§total: Option<Box<BillingTotal>>
§regions: Option<HashMap<String, BillingRegions>>
Breakdown of regional data for products that are region based.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Billing
impl<'de> Deserialize<'de> for Billing
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 Billing
Auto Trait Implementations§
impl Freeze for Billing
impl RefUnwindSafe for Billing
impl Send for Billing
impl Sync for Billing
impl Unpin for Billing
impl UnwindSafe for Billing
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