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