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