pub struct CreateBillingPortalConfigurationFeaturesCustomerUpdate {
pub allowed_updates: Option<Vec<CreateBillingPortalConfigurationFeaturesCustomerUpdateAllowedUpdates>>,
pub enabled: bool,
}
Expand description
Information about updating the customer details in the portal.
Fields§
§allowed_updates: Option<Vec<CreateBillingPortalConfigurationFeaturesCustomerUpdateAllowedUpdates>>
The types of customer updates that are supported. When empty, customers are not updateable.
enabled: bool
Whether the feature is enabled.
Implementations§
Trait Implementations§
Source§impl Clone for CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl Clone for CreateBillingPortalConfigurationFeaturesCustomerUpdate
Source§fn clone(&self) -> CreateBillingPortalConfigurationFeaturesCustomerUpdate
fn clone(&self) -> CreateBillingPortalConfigurationFeaturesCustomerUpdate
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 CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl RefUnwindSafe for CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl Send for CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl Sync for CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl Unpin for CreateBillingPortalConfigurationFeaturesCustomerUpdate
impl UnwindSafe for CreateBillingPortalConfigurationFeaturesCustomerUpdate
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