pub struct BillingHistoryResponseModel {
pub object: Option<String>,
pub invoices: Option<Vec<BillingInvoice>>,
pub transactions: Option<Vec<BillingTransaction>>,
}
Fields§
§object: Option<String>
§invoices: Option<Vec<BillingInvoice>>
§transactions: Option<Vec<BillingTransaction>>
Implementations§
Source§impl BillingHistoryResponseModel
impl BillingHistoryResponseModel
pub fn new() -> BillingHistoryResponseModel
Trait Implementations§
Source§impl Clone for BillingHistoryResponseModel
impl Clone for BillingHistoryResponseModel
Source§fn clone(&self) -> BillingHistoryResponseModel
fn clone(&self) -> BillingHistoryResponseModel
Returns a copy 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 BillingHistoryResponseModel
impl Debug for BillingHistoryResponseModel
Source§impl Default for BillingHistoryResponseModel
impl Default for BillingHistoryResponseModel
Source§fn default() -> BillingHistoryResponseModel
fn default() -> BillingHistoryResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BillingHistoryResponseModel
impl<'de> Deserialize<'de> for BillingHistoryResponseModel
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 BillingHistoryResponseModel
Auto Trait Implementations§
impl Freeze for BillingHistoryResponseModel
impl RefUnwindSafe for BillingHistoryResponseModel
impl Send for BillingHistoryResponseModel
impl Sync for BillingHistoryResponseModel
impl Unpin for BillingHistoryResponseModel
impl UnwindSafe for BillingHistoryResponseModel
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