pub struct AuditRecordBean {
pub id: Option<i64>,
pub summary: Option<String>,
pub remote_address: Option<String>,
pub author_key: Option<String>,
pub created: Option<String>,
pub category: Option<String>,
pub event_source: Option<String>,
pub description: Option<String>,
pub object_item: Option<Box<AssociatedItemBean>>,
pub changed_values: Option<Vec<ChangedValueBean>>,
pub associated_items: Option<Vec<AssociatedItemBean>>,
}
Expand description
AuditRecordBean : An audit record.
Fields§
§id: Option<i64>
The ID of the audit record.
summary: Option<String>
The summary of the audit record.
remote_address: Option<String>
The URL of the computer where the creation of the audit record was initiated.
Deprecated, use authorAccountId
instead. The key of the user who created the audit record.
created: Option<String>
The date and time on which the audit record was created.
category: Option<String>
The category of the audit record. For a list of these categories, see the help article Auditing in Jira applications.
event_source: Option<String>
The event the audit record originated from.
description: Option<String>
The description of the audit record.
object_item: Option<Box<AssociatedItemBean>>
§changed_values: Option<Vec<ChangedValueBean>>
The list of values changed in the record event.
associated_items: Option<Vec<AssociatedItemBean>>
The list of items associated with the changed record.
Implementations§
Source§impl AuditRecordBean
impl AuditRecordBean
Sourcepub fn new() -> AuditRecordBean
pub fn new() -> AuditRecordBean
An audit record.
Trait Implementations§
Source§impl Clone for AuditRecordBean
impl Clone for AuditRecordBean
Source§fn clone(&self) -> AuditRecordBean
fn clone(&self) -> AuditRecordBean
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 Debug for AuditRecordBean
impl Debug for AuditRecordBean
Source§impl Default for AuditRecordBean
impl Default for AuditRecordBean
Source§fn default() -> AuditRecordBean
fn default() -> AuditRecordBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AuditRecordBean
impl<'de> Deserialize<'de> for AuditRecordBean
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 AuditRecordBean
impl PartialEq for AuditRecordBean
Source§impl Serialize for AuditRecordBean
impl Serialize for AuditRecordBean
impl StructuralPartialEq for AuditRecordBean
Auto Trait Implementations§
impl Freeze for AuditRecordBean
impl RefUnwindSafe for AuditRecordBean
impl Send for AuditRecordBean
impl Sync for AuditRecordBean
impl Unpin for AuditRecordBean
impl UnwindSafe for AuditRecordBean
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