pub struct CostsResult {
pub amount: Option<CostsResultAmount>,
pub line_item: Option<String>,
pub object: String,
pub project_id: Option<String>,
}
Fields§
§amount: Option<CostsResultAmount>
§line_item: Option<String>
When group_by=line_item
, this field provides the line item of the grouped costs result.
object: String
§project_id: Option<String>
When group_by=project_id
, this field provides the project ID of the grouped costs result.
Trait Implementations§
Source§impl Debug for CostsResult
impl Debug for CostsResult
Source§impl<'de> Deserialize<'de> for CostsResult
impl<'de> Deserialize<'de> for CostsResult
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
Auto Trait Implementations§
impl Freeze for CostsResult
impl RefUnwindSafe for CostsResult
impl Send for CostsResult
impl Sync for CostsResult
impl Unpin for CostsResult
impl UnwindSafe for CostsResult
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