pub struct BillingPlanResponse {
pub org_id: String,
pub subscription: Option<Value>,
pub tier_id: Option<String>,
}Expand description
BillingPlanResponse
JSON schema
{
"type": "object",
"required": [
"org_id"
],
"properties": {
"org_id": {
"type": "string"
},
"subscription": {},
"tier_id": {
"type": [
"string",
"null"
]
}
}
}Fields§
§org_id: String§subscription: Option<Value>§tier_id: Option<String>Trait Implementations§
Source§impl Clone for BillingPlanResponse
impl Clone for BillingPlanResponse
Source§fn clone(&self) -> BillingPlanResponse
fn clone(&self) -> BillingPlanResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 BillingPlanResponse
impl Debug for BillingPlanResponse
Source§impl<'de> Deserialize<'de> for BillingPlanResponse
impl<'de> Deserialize<'de> for BillingPlanResponse
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
Auto Trait Implementations§
impl Freeze for BillingPlanResponse
impl RefUnwindSafe for BillingPlanResponse
impl Send for BillingPlanResponse
impl Sync for BillingPlanResponse
impl Unpin for BillingPlanResponse
impl UnsafeUnpin for BillingPlanResponse
impl UnwindSafe for BillingPlanResponse
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