pub struct MonthlyDocMakerPackPlanPricing {
pub amount: f64,
pub currency: PackPlanCurrency,
pub type_: MonthlyDocMakerPackPlanPricingType,
}
Expand description
Pricing used when workspaces can subscribe to the Pack for a monthly cost per Doc Maker.
JSON schema
{
"description": "Pricing used when workspaces can subscribe to the Pack
for a monthly cost per Doc Maker.",
"type": "object",
"required": [
"amount",
"currency",
"type"
],
"properties": {
"amount": {
"description": "The monthly cost of the Pack per Doc Maker.",
"type": "number"
},
"currency": {
"$ref": "#/components/schemas/PackPlanCurrency"
},
"type": {
"type": "string",
"enum": [
"MonthlyDocMaker"
],
"x-tsType": "PackPlanPricingType.MonthlyDocMaker"
}
},
"additionalProperties": false,
"x-schema-name": "MonthlyDocMakerPackPlanPricing"
}
Fields§
§amount: f64
§currency: PackPlanCurrency
§type_: MonthlyDocMakerPackPlanPricingType
Trait Implementations§
Source§impl Clone for MonthlyDocMakerPackPlanPricing
impl Clone for MonthlyDocMakerPackPlanPricing
Source§fn clone(&self) -> MonthlyDocMakerPackPlanPricing
fn clone(&self) -> MonthlyDocMakerPackPlanPricing
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 moreSource§impl<'de> Deserialize<'de> for MonthlyDocMakerPackPlanPricing
impl<'de> Deserialize<'de> for MonthlyDocMakerPackPlanPricing
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 From<&MonthlyDocMakerPackPlanPricing> for MonthlyDocMakerPackPlanPricing
impl From<&MonthlyDocMakerPackPlanPricing> for MonthlyDocMakerPackPlanPricing
Source§fn from(value: &MonthlyDocMakerPackPlanPricing) -> Self
fn from(value: &MonthlyDocMakerPackPlanPricing) -> Self
Converts to this type from the input type.
Source§impl From<MonthlyDocMakerPackPlanPricing> for StandardPackPlanPricing
impl From<MonthlyDocMakerPackPlanPricing> for StandardPackPlanPricing
Source§fn from(value: MonthlyDocMakerPackPlanPricing) -> Self
fn from(value: MonthlyDocMakerPackPlanPricing) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for MonthlyDocMakerPackPlanPricing
impl RefUnwindSafe for MonthlyDocMakerPackPlanPricing
impl Send for MonthlyDocMakerPackPlanPricing
impl Sync for MonthlyDocMakerPackPlanPricing
impl Unpin for MonthlyDocMakerPackPlanPricing
impl UnwindSafe for MonthlyDocMakerPackPlanPricing
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