class Google::Apis::AdminReportsV1::Activity::Event::Parameter
Attributes
bool_value[RW]
Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
bool_value?[RW]
Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
int_value[RW]
Integral value of the parameter. Corresponds to the JSON property `intValue` @return [String]
multi_int_value[RW]
Multi-int value of the parameter. Corresponds to the JSON property `multiIntValue` @return [Array<String>]
multi_value[RW]
Multi-string value of the parameter. Corresponds to the JSON property `multiValue` @return [Array<String>]
name[RW]
The name of the parameter. Corresponds to the JSON property `name` @return [String]
value[RW]
String value of the parameter. Corresponds to the JSON property `value` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/admin_reports_v1/classes.rb, line 218 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 223 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @int_value = args[:int_value] if args.key?(:int_value) @multi_int_value = args[:multi_int_value] if args.key?(:multi_int_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