pub struct BillingusagereportUsageItems {
pub date: Option<String>,
pub product: Option<String>,
pub sku: Option<String>,
pub quantity: Option<i64>,
pub unit_type: Option<String>,
pub price_per_unit: Option<f64>,
pub gross_amount: Option<f64>,
pub discount_amount: Option<f64>,
pub net_amount: Option<f64>,
pub organization_name: Option<String>,
pub repository_name: Option<String>,
}Fields§
§date: Option<String>Date of the usage line item.
product: Option<String>Product name.
sku: Option<String>SKU name.
quantity: Option<i64>Quantity of the usage line item.
unit_type: Option<String>Unit type of the usage line item.
price_per_unit: Option<f64>Price per unit of the usage line item.
gross_amount: Option<f64>Gross amount of the usage line item.
discount_amount: Option<f64>Discount amount of the usage line item.
net_amount: Option<f64>Net amount of the usage line item.
organization_name: Option<String>Name of the organization.
repository_name: Option<String>Name of the repository.
Trait Implementations§
Source§impl Clone for BillingusagereportUsageItems
impl Clone for BillingusagereportUsageItems
Source§fn clone(&self) -> BillingusagereportUsageItems
fn clone(&self) -> BillingusagereportUsageItems
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 BillingusagereportUsageItems
impl Debug for BillingusagereportUsageItems
Source§impl Default for BillingusagereportUsageItems
impl Default for BillingusagereportUsageItems
Source§fn default() -> BillingusagereportUsageItems
fn default() -> BillingusagereportUsageItems
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingusagereportUsageItems
impl<'de> Deserialize<'de> for BillingusagereportUsageItems
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
Source§impl PartialEq for BillingusagereportUsageItems
impl PartialEq for BillingusagereportUsageItems
Source§fn eq(&self, other: &BillingusagereportUsageItems) -> bool
fn eq(&self, other: &BillingusagereportUsageItems) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BillingusagereportUsageItems
Auto Trait Implementations§
impl Freeze for BillingusagereportUsageItems
impl RefUnwindSafe for BillingusagereportUsageItems
impl Send for BillingusagereportUsageItems
impl Sync for BillingusagereportUsageItems
impl Unpin for BillingusagereportUsageItems
impl UnwindSafe for BillingusagereportUsageItems
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