pub struct PatchedBulkJournalEntryRequest {
pub id: i32,
pub assigned_object_type: Option<String>,
pub assigned_object_id: Option<i64>,
pub created_by: Option<Option<i32>>,
pub kind: Option<Kind>,
pub comments: Option<String>,
pub tags: Option<Vec<NestedTagRequest>>,
pub custom_fields: Option<HashMap<String, Value>>,
}Expand description
PatchedBulkJournalEntryRequest : Adds support for custom fields and tags.
Fields§
§id: i32§assigned_object_type: Option<String>§assigned_object_id: Option<i64>§created_by: Option<Option<i32>>§kind: Option<Kind>info- Info *success- Success *warning- Warning *danger- Danger
comments: Option<String>§custom_fields: Option<HashMap<String, Value>>Implementations§
Source§impl PatchedBulkJournalEntryRequest
impl PatchedBulkJournalEntryRequest
Sourcepub fn new(id: i32) -> PatchedBulkJournalEntryRequest
pub fn new(id: i32) -> PatchedBulkJournalEntryRequest
Adds support for custom fields and tags.
Trait Implementations§
Source§impl Clone for PatchedBulkJournalEntryRequest
impl Clone for PatchedBulkJournalEntryRequest
Source§fn clone(&self) -> PatchedBulkJournalEntryRequest
fn clone(&self) -> PatchedBulkJournalEntryRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 PatchedBulkJournalEntryRequest
impl Default for PatchedBulkJournalEntryRequest
Source§fn default() -> PatchedBulkJournalEntryRequest
fn default() -> PatchedBulkJournalEntryRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PatchedBulkJournalEntryRequest
impl<'de> Deserialize<'de> for PatchedBulkJournalEntryRequest
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
impl StructuralPartialEq for PatchedBulkJournalEntryRequest
Auto Trait Implementations§
impl Freeze for PatchedBulkJournalEntryRequest
impl RefUnwindSafe for PatchedBulkJournalEntryRequest
impl Send for PatchedBulkJournalEntryRequest
impl Sync for PatchedBulkJournalEntryRequest
impl Unpin for PatchedBulkJournalEntryRequest
impl UnsafeUnpin for PatchedBulkJournalEntryRequest
impl UnwindSafe for PatchedBulkJournalEntryRequest
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