#[non_exhaustive]
pub struct TeamEvent { pub timestamp: DropboxTimestamp, pub event_category: EventCategory, pub event_type: EventType, pub details: EventDetails, pub actor: Option<ActorLogInfo>, pub origin: Option<OriginLogInfo>, pub involve_non_team_member: Option<bool>, pub context: Option<ContextLogInfo>, pub participants: Option<Vec<ParticipantLogInfo>>, pub assets: Option<Vec<AssetLogInfo>>, }
Available on crate feature dbx_team_log only.
Expand description

An audit log event.

Fields (Non-exhaustive)

This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.
timestamp: DropboxTimestamp

The Dropbox timestamp representing when the action was taken.

event_category: EventCategory

The category that this type of action belongs to.

event_type: EventType

The particular type of action taken.

details: EventDetails

The variable event schema applicable to this type of action, instantiated with respect to this particular action.

actor: Option<ActorLogInfo>

The entity who actually performed the action. Might be missing due to historical data gap.

origin: Option<OriginLogInfo>

The origin from which the actor performed the action including information about host, ip address, location, session, etc. If the action was performed programmatically via the API the origin represents the API client.

involve_non_team_member: Option<bool>

True if the action involved a non team member either as the actor or as one of the affected users. Might be missing due to historical data gap.

context: Option<ContextLogInfo>

The user or team on whose behalf the actor performed the action. Might be missing due to historical data gap.

participants: Option<Vec<ParticipantLogInfo>>

Zero or more users and/or groups that are affected by the action. Note that this list doesn’t include any actors or users in context.

assets: Option<Vec<AssetLogInfo>>

Zero or more content assets involved in the action. Currently these include Dropbox files and folders but in the future we might add other asset types such as Paper documents, folders, projects, etc.

Implementations

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Deserialize this value from the given Serde deserializer. Read more

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Serialize this value into the given Serde serializer. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Returns the argument unchanged.

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

Uses borrowed data to replace owned data, usually by cloning. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.