pub struct PatchedControllerManagedDeviceGroupRequest {
pub id: Option<Uuid>,
pub capabilities: Option<Option<Vec<CapabilitiesEnum>>>,
pub name: Option<String>,
pub description: Option<String>,
pub weight: Option<i32>,
pub parent: Option<Option<Box<ApprovalWorkflowUser>>>,
pub controller: Option<Box<BulkWritableControllerManagedDeviceGroupRequestController>>,
pub tenant: Option<Option<Box<ApprovalWorkflowUser>>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedControllerManagedDeviceGroupRequest : Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Fields§
§id: Option<Uuid>§capabilities: Option<Option<Vec<CapabilitiesEnum>>>§name: Option<String>Name of the controller device group
description: Option<String>§weight: Option<i32>Weight of the controller device group, used to sort the groups within its parent group
parent: Option<Option<Box<ApprovalWorkflowUser>>>§controller: Option<Box<BulkWritableControllerManagedDeviceGroupRequestController>>§tenant: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedControllerManagedDeviceGroupRequest
impl PatchedControllerManagedDeviceGroupRequest
Sourcepub fn new() -> PatchedControllerManagedDeviceGroupRequest
pub fn new() -> PatchedControllerManagedDeviceGroupRequest
Base class to use for serializers based on OrganizationalModel or PrimaryModel. Can also be used for models derived from BaseModel, so long as they support custom fields, notes, and relationships.
Trait Implementations§
Source§impl Clone for PatchedControllerManagedDeviceGroupRequest
impl Clone for PatchedControllerManagedDeviceGroupRequest
Source§fn clone(&self) -> PatchedControllerManagedDeviceGroupRequest
fn clone(&self) -> PatchedControllerManagedDeviceGroupRequest
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 Default for PatchedControllerManagedDeviceGroupRequest
impl Default for PatchedControllerManagedDeviceGroupRequest
Source§fn default() -> PatchedControllerManagedDeviceGroupRequest
fn default() -> PatchedControllerManagedDeviceGroupRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedControllerManagedDeviceGroupRequest
impl<'de> Deserialize<'de> for PatchedControllerManagedDeviceGroupRequest
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 PartialEq for PatchedControllerManagedDeviceGroupRequest
impl PartialEq for PatchedControllerManagedDeviceGroupRequest
Source§fn eq(&self, other: &PatchedControllerManagedDeviceGroupRequest) -> bool
fn eq(&self, other: &PatchedControllerManagedDeviceGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedControllerManagedDeviceGroupRequest
Auto Trait Implementations§
impl Freeze for PatchedControllerManagedDeviceGroupRequest
impl RefUnwindSafe for PatchedControllerManagedDeviceGroupRequest
impl Send for PatchedControllerManagedDeviceGroupRequest
impl Sync for PatchedControllerManagedDeviceGroupRequest
impl Unpin for PatchedControllerManagedDeviceGroupRequest
impl UnsafeUnpin for PatchedControllerManagedDeviceGroupRequest
impl UnwindSafe for PatchedControllerManagedDeviceGroupRequest
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