pub struct CreateCustomerBillingConfiguration {
pub invoice_grace_period: Option<i32>,
pub payment_provider: Option<CustomerPaymentProvider>,
pub payment_provider_code: Option<String>,
pub provider_customer_id: Option<String>,
pub sync: Option<bool>,
pub sync_with_provider: Option<bool>,
pub document_locale: Option<String>,
pub provider_payment_methods: Option<Vec<String>>,
}Fields§
§invoice_grace_period: Option<i32>§payment_provider: Option<CustomerPaymentProvider>§payment_provider_code: Option<String>§provider_customer_id: Option<String>§sync: Option<bool>§sync_with_provider: Option<bool>§document_locale: Option<String>§provider_payment_methods: Option<Vec<String>>Trait Implementations§
Source§impl Clone for CreateCustomerBillingConfiguration
impl Clone for CreateCustomerBillingConfiguration
Source§fn clone(&self) -> CreateCustomerBillingConfiguration
fn clone(&self) -> CreateCustomerBillingConfiguration
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<'de> Deserialize<'de> for CreateCustomerBillingConfiguration
impl<'de> Deserialize<'de> for CreateCustomerBillingConfiguration
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 CreateCustomerBillingConfiguration
impl RefUnwindSafe for CreateCustomerBillingConfiguration
impl Send for CreateCustomerBillingConfiguration
impl Sync for CreateCustomerBillingConfiguration
impl Unpin for CreateCustomerBillingConfiguration
impl UnwindSafe for CreateCustomerBillingConfiguration
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