pub struct ApprovalUpdateParameters {
    pub approval_id: Option<String>,
    pub assigned_approver: Option<IdentityRef>,
    pub comment: Option<String>,
    pub reassign_to: Option<IdentityRef>,
    pub status: Option<Status>,
}Expand description
Data to update an approval object or its individual step.
Fields§
§approval_id: Option<String>ID of the approval to be updated.
assigned_approver: Option<IdentityRef>§comment: Option<String>Gets or sets comment.
reassign_to: Option<IdentityRef>§status: Option<Status>Gets or sets status.
Implementations§
Trait Implementations§
source§impl Clone for ApprovalUpdateParameters
 
impl Clone for ApprovalUpdateParameters
source§fn clone(&self) -> ApprovalUpdateParameters
 
fn clone(&self) -> ApprovalUpdateParameters
Returns a copy 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 ApprovalUpdateParameters
 
impl Debug for ApprovalUpdateParameters
source§impl Default for ApprovalUpdateParameters
 
impl Default for ApprovalUpdateParameters
source§fn default() -> ApprovalUpdateParameters
 
fn default() -> ApprovalUpdateParameters
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for ApprovalUpdateParameters
 
impl<'de> Deserialize<'de> for ApprovalUpdateParameters
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 ApprovalUpdateParameters
 
impl PartialEq for ApprovalUpdateParameters
source§fn eq(&self, other: &ApprovalUpdateParameters) -> bool
 
fn eq(&self, other: &ApprovalUpdateParameters) -> bool
This method tests for 
self and other values to be equal, and is used
by ==.source§impl Serialize for ApprovalUpdateParameters
 
impl Serialize for ApprovalUpdateParameters
impl StructuralPartialEq for ApprovalUpdateParameters
Auto Trait Implementations§
impl RefUnwindSafe for ApprovalUpdateParameters
impl Send for ApprovalUpdateParameters
impl Sync for ApprovalUpdateParameters
impl Unpin for ApprovalUpdateParameters
impl UnwindSafe for ApprovalUpdateParameters
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