1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// This file is @generated by prost-build.
/// Admin Console legacy audit log.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct AuditData {
    /// Text description of the admin event.
    /// This is the "Event" column in Admin Console's Admin Logs.
    #[prost(string, tag = "1")]
    pub event_message: ::prost::alloc::string::String,
    /// Arbitrary event data.
    /// This is the "Result" column in Admin Console's Admin Logs.
    #[prost(btree_map = "string, string", tag = "2")]
    pub event_data: ::prost::alloc::collections::BTreeMap<
        ::prost::alloc::string::String,
        ::prost::alloc::string::String,
    >,
}