class Google::Apis::AdminReportsV1::Activity::Id
Unique identifier for each activity record.
Attributes
application_name[RW]
Application name to which the event belongs. Corresponds to the JSON property `applicationName` @return [String]
customer_id[RW]
Obfuscated customer ID of the source customer. Corresponds to the JSON property `customerId` @return [String]
time[RW]
Time of occurrence of the activity. Corresponds to the JSON property `time` @return [DateTime]
unique_qualifier[RW]
Unique qualifier if multiple events have the same time. Corresponds to the JSON property `uniqueQualifier` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_reports_v1/classes.rb, line 258 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/admin_reports_v1/classes.rb, line 263 def update!(**args) @application_name = args[:application_name] if args.key?(:application_name) @customer_id = args[:customer_id] if args.key?(:customer_id) @time = args[:time] if args.key?(:time) @unique_qualifier = args[:unique_qualifier] if args.key?(:unique_qualifier) end