pub struct OrganizationUpgradeRequestModel {
pub business_name: Option<String>,
pub plan_type: Option<PlanType>,
pub additional_seats: Option<i32>,
pub additional_storage_gb: Option<i32>,
pub additional_sm_seats: Option<i32>,
pub additional_service_accounts: Option<i32>,
pub use_secrets_manager: bool,
pub premium_access_addon: Option<bool>,
pub billing_address_country: Option<String>,
pub billing_address_postal_code: Option<String>,
pub keys: Option<Box<OrganizationKeysRequestModel>>,
}
Fields§
§business_name: Option<String>
§plan_type: Option<PlanType>
§additional_seats: Option<i32>
§additional_storage_gb: Option<i32>
§additional_sm_seats: Option<i32>
§additional_service_accounts: Option<i32>
§use_secrets_manager: bool
§billing_address_country: Option<String>
§billing_address_postal_code: Option<String>
§keys: Option<Box<OrganizationKeysRequestModel>>
Implementations§
Source§impl OrganizationUpgradeRequestModel
impl OrganizationUpgradeRequestModel
pub fn new(use_secrets_manager: bool) -> OrganizationUpgradeRequestModel
Trait Implementations§
Source§impl Clone for OrganizationUpgradeRequestModel
impl Clone for OrganizationUpgradeRequestModel
Source§fn clone(&self) -> OrganizationUpgradeRequestModel
fn clone(&self) -> OrganizationUpgradeRequestModel
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 Default for OrganizationUpgradeRequestModel
impl Default for OrganizationUpgradeRequestModel
Source§fn default() -> OrganizationUpgradeRequestModel
fn default() -> OrganizationUpgradeRequestModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for OrganizationUpgradeRequestModel
impl<'de> Deserialize<'de> for OrganizationUpgradeRequestModel
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
Source§impl PartialEq for OrganizationUpgradeRequestModel
impl PartialEq for OrganizationUpgradeRequestModel
Source§fn eq(&self, other: &OrganizationUpgradeRequestModel) -> bool
fn eq(&self, other: &OrganizationUpgradeRequestModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for OrganizationUpgradeRequestModel
Auto Trait Implementations§
impl Freeze for OrganizationUpgradeRequestModel
impl RefUnwindSafe for OrganizationUpgradeRequestModel
impl Send for OrganizationUpgradeRequestModel
impl Sync for OrganizationUpgradeRequestModel
impl Unpin for OrganizationUpgradeRequestModel
impl UnwindSafe for OrganizationUpgradeRequestModel
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