pub struct BundledPackPlan {
pub created_at: DateTime<Utc>,
pub pack_id: f64,
pub pack_plan_id: String,
pub pricing: BundledPackPlanPricing,
}
Expand description
The Pack plan to show the Pack can be accessed if the workspace is at least the given tier.
JSON schema
{
"description": "The Pack plan to show the Pack can be accessed if the
workspace is at least the given tier.",
"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": {
"$ref": "#/components/schemas/BundledPackPlanPricing"
}
},
"additionalProperties": false,
"x-schema-name": "BundledPackPlan"
}
Fields§
§created_at: DateTime<Utc>
Timestamp for when the Pack plan was created.
pack_id: f64
§pack_plan_id: String
§pricing: BundledPackPlanPricing
Trait Implementations§
Source§impl Clone for BundledPackPlan
impl Clone for BundledPackPlan
Source§fn clone(&self) -> BundledPackPlan
fn clone(&self) -> BundledPackPlan
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 BundledPackPlan
impl Debug for BundledPackPlan
Source§impl<'de> Deserialize<'de> for BundledPackPlan
impl<'de> Deserialize<'de> for BundledPackPlan
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<&BundledPackPlan> for BundledPackPlan
impl From<&BundledPackPlan> for BundledPackPlan
Source§fn from(value: &BundledPackPlan) -> Self
fn from(value: &BundledPackPlan) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for BundledPackPlan
impl RefUnwindSafe for BundledPackPlan
impl Send for BundledPackPlan
impl Sync for BundledPackPlan
impl Unpin for BundledPackPlan
impl UnwindSafe for BundledPackPlan
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