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