pub struct PatchedBulkWritableControllerRequest {Show 15 fields
pub id: Uuid,
pub capabilities: Option<Option<Vec<CapabilitiesEnum>>>,
pub name: Option<String>,
pub description: Option<String>,
pub status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub location: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
pub platform: Option<Option<Box<ApprovalWorkflowUser>>>,
pub role: Option<Option<Box<ApprovalWorkflowUser>>>,
pub tenant: Option<Option<Box<ApprovalWorkflowUser>>>,
pub external_integration: Option<Option<Box<ApprovalWorkflowUser>>>,
pub controller_device: Option<Option<Box<ApprovalWorkflowUser>>>,
pub controller_device_redundancy_group: Option<Option<Box<ApprovalWorkflowUser>>>,
pub custom_fields: Option<HashMap<String, Value>>,
pub relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>,
pub tags: Option<Vec<ApprovalWorkflowStageResponseApprovalWorkflowStage>>,
}Expand description
PatchedBulkWritableControllerRequest : 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: Option<String>§description: Option<String>§status: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§location: Option<Box<ApprovalWorkflowStageResponseApprovalWorkflowStage>>§platform: Option<Option<Box<ApprovalWorkflowUser>>>§role: Option<Option<Box<ApprovalWorkflowUser>>>§tenant: Option<Option<Box<ApprovalWorkflowUser>>>§external_integration: Option<Option<Box<ApprovalWorkflowUser>>>§controller_device: Option<Option<Box<ApprovalWorkflowUser>>>§controller_device_redundancy_group: Option<Option<Box<ApprovalWorkflowUser>>>§custom_fields: Option<HashMap<String, Value>>§relationships: Option<HashMap<String, ApprovalWorkflowDefinitionRequestRelationshipsValue>>Implementations§
Source§impl PatchedBulkWritableControllerRequest
impl PatchedBulkWritableControllerRequest
Sourcepub fn new(id: Uuid) -> PatchedBulkWritableControllerRequest
pub fn new(id: Uuid) -> PatchedBulkWritableControllerRequest
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 PatchedBulkWritableControllerRequest
impl Clone for PatchedBulkWritableControllerRequest
Source§fn clone(&self) -> PatchedBulkWritableControllerRequest
fn clone(&self) -> PatchedBulkWritableControllerRequest
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 PatchedBulkWritableControllerRequest
impl Default for PatchedBulkWritableControllerRequest
Source§fn default() -> PatchedBulkWritableControllerRequest
fn default() -> PatchedBulkWritableControllerRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkWritableControllerRequest
impl<'de> Deserialize<'de> for PatchedBulkWritableControllerRequest
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 PatchedBulkWritableControllerRequest
impl PartialEq for PatchedBulkWritableControllerRequest
Source§fn eq(&self, other: &PatchedBulkWritableControllerRequest) -> bool
fn eq(&self, other: &PatchedBulkWritableControllerRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for PatchedBulkWritableControllerRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkWritableControllerRequest
impl RefUnwindSafe for PatchedBulkWritableControllerRequest
impl Send for PatchedBulkWritableControllerRequest
impl Sync for PatchedBulkWritableControllerRequest
impl Unpin for PatchedBulkWritableControllerRequest
impl UnsafeUnpin for PatchedBulkWritableControllerRequest
impl UnwindSafe for PatchedBulkWritableControllerRequest
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