class Google::Apis::AdminReportsV1::Activity::Id
Unique identifier for each activity record.
Attributes
application_name[RW]
Application name to which the event belongs. For possible values see the list of applications above in `applicationName`. Corresponds to the JSON property `applicationName` @return [String]
customer_id[RW]
The unique identifier for a Google
Workspace account. Corresponds to the JSON property `customerId` @return [String]
time[RW]
Time of occurrence of the activity. This is in UNIX epoch time in seconds. 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 [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_reports_v1/classes.rb, line 340 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_reports_v1/classes.rb, line 345 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