pub struct ActivateBasePlanRequest {
pub base_plan_id: Option<String>,
pub latency_tolerance: Option<String>,
pub package_name: Option<String>,
pub product_id: Option<String>,
}Expand description
Request message for ActivateBasePlan.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
Fields§
§base_plan_id: Option<String>Required. The unique base plan ID of the base plan to activate.
latency_tolerance: Option<String>Optional. The latency tolerance for the propagation of this product update. Defaults to latency-sensitive.
package_name: Option<String>Required. The parent app (package name) of the base plan to activate.
product_id: Option<String>Required. The parent subscription (ID) of the base plan to activate.
Trait Implementations§
Source§impl Clone for ActivateBasePlanRequest
impl Clone for ActivateBasePlanRequest
Source§fn clone(&self) -> ActivateBasePlanRequest
fn clone(&self) -> ActivateBasePlanRequest
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 ActivateBasePlanRequest
impl Debug for ActivateBasePlanRequest
Source§impl Default for ActivateBasePlanRequest
impl Default for ActivateBasePlanRequest
Source§fn default() -> ActivateBasePlanRequest
fn default() -> ActivateBasePlanRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivateBasePlanRequest
impl<'de> Deserialize<'de> for ActivateBasePlanRequest
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 Serialize for ActivateBasePlanRequest
impl Serialize for ActivateBasePlanRequest
impl RequestValue for ActivateBasePlanRequest
Auto Trait Implementations§
impl Freeze for ActivateBasePlanRequest
impl RefUnwindSafe for ActivateBasePlanRequest
impl Send for ActivateBasePlanRequest
impl Sync for ActivateBasePlanRequest
impl Unpin for ActivateBasePlanRequest
impl UnwindSafe for ActivateBasePlanRequest
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