pub struct ApproveEntitlementRequest {
pub entitlement_migrated: Option<String>,
pub properties: Option<HashMap<String, String>>,
}Expand description
Request message for [PartnerProcurementService.ApproveEntitlement[].
§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).
- entitlements approve providers (request)
Fields§
§entitlement_migrated: Option<String>Optional. The resource name of the entitlement that was migrated, with the format providers/{provider_id}/entitlements/{entitlement_id}. Should only be sent when resources have been migrated from entitlement_migrated to the new entitlement. Optional.
properties: Option<HashMap<String, String>>Set of properties that should be associated with the entitlement. Optional.
Trait Implementations§
Source§impl Clone for ApproveEntitlementRequest
impl Clone for ApproveEntitlementRequest
Source§fn clone(&self) -> ApproveEntitlementRequest
fn clone(&self) -> ApproveEntitlementRequest
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 ApproveEntitlementRequest
impl Debug for ApproveEntitlementRequest
Source§impl Default for ApproveEntitlementRequest
impl Default for ApproveEntitlementRequest
Source§fn default() -> ApproveEntitlementRequest
fn default() -> ApproveEntitlementRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ApproveEntitlementRequest
impl<'de> Deserialize<'de> for ApproveEntitlementRequest
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
impl RequestValue for ApproveEntitlementRequest
Auto Trait Implementations§
impl Freeze for ApproveEntitlementRequest
impl RefUnwindSafe for ApproveEntitlementRequest
impl Send for ApproveEntitlementRequest
impl Sync for ApproveEntitlementRequest
impl Unpin for ApproveEntitlementRequest
impl UnwindSafe for ApproveEntitlementRequest
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