pub struct StandardPackPlan {
pub created_at: DateTime<Utc>,
pub pack_id: f64,
pub pack_plan_id: String,
pub pricing: StandardPackPlanPricing,
}
Expand description
The Pack plan to show the Pack can be subscribed to at a monthly cost per Doc Maker or for free.
JSON schema
{
"description": "The Pack plan to show the Pack can be subscribed to at
a monthly cost per Doc Maker or for free.",
"type": "object",
"required": [
"createdAt",
"packId",
"packPlanId",
"pricing"
],
"properties": {
"createdAt": {
"description": "Timestamp for when the Pack plan was created.",
"examples": [
"2018-04-11T00:18:57.946Z"
],
"type": "string",
"format": "date-time"
},
"packId": {
"type": "number"
},
"packPlanId": {
"type": "string"
},
"pricing": {
"description": "Pricing to show how workspaces can subscribe to the
Pack.",
"oneOf": [
{
"$ref": "#/components/schemas/FreePackPlanPricing"
},
{
"$ref": "#/components/schemas/MonthlyDocMakerPackPlanPricing"
}
]
}
},
"additionalProperties": false,
"x-schema-name": "StandardPackPlan"
}
Fields§
§created_at: DateTime<Utc>
Timestamp for when the Pack plan was created.
pack_id: f64
§pack_plan_id: String
§pricing: StandardPackPlanPricing
Pricing to show how workspaces can subscribe to the Pack.
Trait Implementations§
Source§impl Clone for StandardPackPlan
impl Clone for StandardPackPlan
Source§fn clone(&self) -> StandardPackPlan
fn clone(&self) -> StandardPackPlan
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 Debug for StandardPackPlan
impl Debug for StandardPackPlan
Source§impl<'de> Deserialize<'de> for StandardPackPlan
impl<'de> Deserialize<'de> for StandardPackPlan
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<&StandardPackPlan> for StandardPackPlan
impl From<&StandardPackPlan> for StandardPackPlan
Source§fn from(value: &StandardPackPlan) -> Self
fn from(value: &StandardPackPlan) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for StandardPackPlan
impl RefUnwindSafe for StandardPackPlan
impl Send for StandardPackPlan
impl Sync for StandardPackPlan
impl Unpin for StandardPackPlan
impl UnwindSafe for StandardPackPlan
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