class Google::Apis::AdminReportsV1::Activity::Event

Attributes

name[RW]

Name of event. Corresponds to the JSON property `name` @return [String]

parameters[RW]

Parameter value pairs for various applications. Corresponds to the JSON property `parameters` @return [Array<Google::Apis::AdminReportsV1::Activity::Event::Parameter>]

type[RW]

Type of event. Corresponds to the JSON property `type` @return [String]

Public Class Methods

new(**args) click to toggle source
# File generated/google/apis/admin_reports_v1/classes.rb, line 172
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 177
def update!(**args)
  @name = args[:name] if args.key?(:name)
  @parameters = args[:parameters] if args.key?(:parameters)
  @type = args[:type] if args.key?(:type)
end