pub struct CreateBillingPortalConfigurationFeatures {
pub customer_update: Option<CreateBillingPortalConfigurationFeaturesCustomerUpdate>,
pub invoice_history: Option<CreateBillingPortalConfigurationFeaturesInvoiceHistory>,
pub payment_method_update: Option<CreateBillingPortalConfigurationFeaturesPaymentMethodUpdate>,
pub subscription_cancel: Option<CreateBillingPortalConfigurationFeaturesSubscriptionCancel>,
pub subscription_update: Option<CreateBillingPortalConfigurationFeaturesSubscriptionUpdate>,
}
Expand description
Information about the features available in the portal.
Fields§
§customer_update: Option<CreateBillingPortalConfigurationFeaturesCustomerUpdate>
Information about updating the customer details in the portal.
invoice_history: Option<CreateBillingPortalConfigurationFeaturesInvoiceHistory>
Information about showing the billing history in the portal.
payment_method_update: Option<CreateBillingPortalConfigurationFeaturesPaymentMethodUpdate>
Information about updating payment methods in the portal.
subscription_cancel: Option<CreateBillingPortalConfigurationFeaturesSubscriptionCancel>
Information about canceling subscriptions in the portal.
subscription_update: Option<CreateBillingPortalConfigurationFeaturesSubscriptionUpdate>
Information about updating subscriptions in the portal.
Implementations§
Trait Implementations§
Source§impl Clone for CreateBillingPortalConfigurationFeatures
impl Clone for CreateBillingPortalConfigurationFeatures
Source§fn clone(&self) -> CreateBillingPortalConfigurationFeatures
fn clone(&self) -> CreateBillingPortalConfigurationFeatures
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 moreAuto Trait Implementations§
impl Freeze for CreateBillingPortalConfigurationFeatures
impl RefUnwindSafe for CreateBillingPortalConfigurationFeatures
impl Send for CreateBillingPortalConfigurationFeatures
impl Sync for CreateBillingPortalConfigurationFeatures
impl Unpin for CreateBillingPortalConfigurationFeatures
impl UnwindSafe for CreateBillingPortalConfigurationFeatures
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