pub struct BulkWritableControllerManagedDeviceGroupRequest {
pub id: Uuid,
pub capabilities: Option<Option<Vec<CapabilitiesEnum>>>,
pub name: String,
pub description: Option<String>,
pub weight: Option<i32>,
pub parent: Option<Option<Box<ApprovalWorkflowUser>>>,
pub controller: 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
BulkWritableControllerManagedDeviceGroupRequest : 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: Uuid§capabilities: Option<Option<Vec<CapabilitiesEnum>>>§name: StringName 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: Box<BulkWritableControllerManagedDeviceGroupRequestController>§tenant: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl BulkWritableControllerManagedDeviceGroupRequest
impl BulkWritableControllerManagedDeviceGroupRequest
Sourcepub fn new(
id: Uuid,
name: String,
controller: BulkWritableControllerManagedDeviceGroupRequestController,
) -> BulkWritableControllerManagedDeviceGroupRequest
pub fn new( id: Uuid, name: String, controller: BulkWritableControllerManagedDeviceGroupRequestController, ) -> BulkWritableControllerManagedDeviceGroupRequest
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 BulkWritableControllerManagedDeviceGroupRequest
impl Clone for BulkWritableControllerManagedDeviceGroupRequest
Source§fn clone(&self) -> BulkWritableControllerManagedDeviceGroupRequest
fn clone(&self) -> BulkWritableControllerManagedDeviceGroupRequest
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 BulkWritableControllerManagedDeviceGroupRequest
impl Default for BulkWritableControllerManagedDeviceGroupRequest
Source§fn default() -> BulkWritableControllerManagedDeviceGroupRequest
fn default() -> BulkWritableControllerManagedDeviceGroupRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BulkWritableControllerManagedDeviceGroupRequest
impl<'de> Deserialize<'de> for BulkWritableControllerManagedDeviceGroupRequest
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 BulkWritableControllerManagedDeviceGroupRequest
impl PartialEq for BulkWritableControllerManagedDeviceGroupRequest
Source§fn eq(&self, other: &BulkWritableControllerManagedDeviceGroupRequest) -> bool
fn eq(&self, other: &BulkWritableControllerManagedDeviceGroupRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for BulkWritableControllerManagedDeviceGroupRequest
Auto Trait Implementations§
impl Freeze for BulkWritableControllerManagedDeviceGroupRequest
impl RefUnwindSafe for BulkWritableControllerManagedDeviceGroupRequest
impl Send for BulkWritableControllerManagedDeviceGroupRequest
impl Sync for BulkWritableControllerManagedDeviceGroupRequest
impl Unpin for BulkWritableControllerManagedDeviceGroupRequest
impl UnsafeUnpin for BulkWritableControllerManagedDeviceGroupRequest
impl UnwindSafe for BulkWritableControllerManagedDeviceGroupRequest
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