class Google::Apis::AdminReportsV1::Activity::Event::Parameter
Attributes
Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
Integer value of the parameter. Corresponds to the JSON property `intValue` @return [Fixnum]
Nested parameter value pairs associated with this parameter. Complex value type for a parameter are returned as a list of parameter values. For example, the address parameter may have a value as `[`parameter: [`name: city, value: abc`]`]` Corresponds to the JSON property `messageValue` @return [Google::Apis::AdminReportsV1::Activity::Event::Parameter::MessageValue]
Integer values of the parameter. Corresponds to the JSON property `multiIntValue` @return [Array<Fixnum>]
List of `messageValue` objects. Corresponds to the JSON property `multiMessageValue` @return [Array<Google::Apis::AdminReportsV1::Activity::Event::Parameter::MultiMessageValue>]
String values of the parameter. Corresponds to the JSON property `multiValue` @return [Array<String>]
The name of the parameter. Corresponds to the JSON property `name` @return [String]
String value of the parameter. Corresponds to the JSON property `value` @return [String]
Public Class Methods
# File lib/google/apis/admin_reports_v1/classes.rb, line 256 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/admin_reports_v1/classes.rb, line 261 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @int_value = args[:int_value] if args.key?(:int_value) @message_value = args[:message_value] if args.key?(:message_value) @multi_int_value = args[:multi_int_value] if args.key?(:multi_int_value) @multi_message_value = args[:multi_message_value] if args.key?(:multi_message_value) @multi_value = args[:multi_value] if args.key?(:multi_value) @name = args[:name] if args.key?(:name) @value = args[:value] if args.key?(:value) end