pub struct PasswordManagerPlanFeaturesResponseModel {Show 20 fields
pub stripe_plan_id: Option<String>,
pub stripe_seat_plan_id: Option<String>,
pub stripe_provider_portal_seat_plan_id: Option<String>,
pub base_price: Option<f64>,
pub seat_price: Option<f64>,
pub provider_portal_seat_price: Option<f64>,
pub allow_seat_autoscale: Option<bool>,
pub has_additional_seats_option: Option<bool>,
pub max_additional_seats: Option<i32>,
pub base_seats: Option<i32>,
pub has_premium_access_option: Option<bool>,
pub stripe_premium_access_plan_id: Option<String>,
pub premium_access_option_price: Option<f64>,
pub max_seats: Option<i32>,
pub base_storage_gb: Option<i32>,
pub has_additional_storage_option: Option<bool>,
pub additional_storage_price_per_gb: Option<f64>,
pub stripe_storage_plan_id: Option<String>,
pub max_additional_storage: Option<i32>,
pub max_collections: Option<i32>,
}
Fields§
§stripe_plan_id: Option<String>
§stripe_seat_plan_id: Option<String>
§stripe_provider_portal_seat_plan_id: Option<String>
§base_price: Option<f64>
§seat_price: Option<f64>
§provider_portal_seat_price: Option<f64>
§allow_seat_autoscale: Option<bool>
§has_additional_seats_option: Option<bool>
§max_additional_seats: Option<i32>
§base_seats: Option<i32>
§max_seats: Option<i32>
§base_storage_gb: Option<i32>
§has_additional_storage_option: Option<bool>
§additional_storage_price_per_gb: Option<f64>
§stripe_storage_plan_id: Option<String>
§max_additional_storage: Option<i32>
§max_collections: Option<i32>
Implementations§
Trait Implementations§
Source§impl Clone for PasswordManagerPlanFeaturesResponseModel
impl Clone for PasswordManagerPlanFeaturesResponseModel
Source§fn clone(&self) -> PasswordManagerPlanFeaturesResponseModel
fn clone(&self) -> PasswordManagerPlanFeaturesResponseModel
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 PasswordManagerPlanFeaturesResponseModel
impl Default for PasswordManagerPlanFeaturesResponseModel
Source§fn default() -> PasswordManagerPlanFeaturesResponseModel
fn default() -> PasswordManagerPlanFeaturesResponseModel
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PasswordManagerPlanFeaturesResponseModel
impl<'de> Deserialize<'de> for PasswordManagerPlanFeaturesResponseModel
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 PasswordManagerPlanFeaturesResponseModel
impl PartialEq for PasswordManagerPlanFeaturesResponseModel
Source§fn eq(&self, other: &PasswordManagerPlanFeaturesResponseModel) -> bool
fn eq(&self, other: &PasswordManagerPlanFeaturesResponseModel) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for PasswordManagerPlanFeaturesResponseModel
Auto Trait Implementations§
impl Freeze for PasswordManagerPlanFeaturesResponseModel
impl RefUnwindSafe for PasswordManagerPlanFeaturesResponseModel
impl Send for PasswordManagerPlanFeaturesResponseModel
impl Sync for PasswordManagerPlanFeaturesResponseModel
impl Unpin for PasswordManagerPlanFeaturesResponseModel
impl UnwindSafe for PasswordManagerPlanFeaturesResponseModel
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