class Google::Apis::AdminReportsV1::UsageReport::Parameter
Attributes
Output only. Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
Output only. Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]
The RFC 3339 formatted value of the parameter, for example 2010-10-28T10:26:35. 000Z. Corresponds to the JSON property `datetimeValue` @return [DateTime]
Output only. Integer value of the parameter. Corresponds to the JSON property `intValue` @return [Fixnum]
Output only. Nested message value of the parameter. Corresponds to the JSON property `msgValue` @return [Array<Hash<String,Object>>]
The name of the parameter. For the User Usage Report parameter names, see the User Usage parameters reference. Corresponds to the JSON property `name` @return [String]
Output only. String value of the parameter. Corresponds to the JSON property `stringValue` @return [String]
Public Class Methods
# File lib/google/apis/admin_reports_v1/classes.rb, line 615 def initialize(**args) update!(**args) end
Public Instance Methods
Update properties of this object
# File lib/google/apis/admin_reports_v1/classes.rb, line 620 def update!(**args) @bool_value = args[:bool_value] if args.key?(:bool_value) @datetime_value = args[:datetime_value] if args.key?(:datetime_value) @int_value = args[:int_value] if args.key?(:int_value) @msg_value = args[:msg_value] if args.key?(:msg_value) @name = args[:name] if args.key?(:name) @string_value = args[:string_value] if args.key?(:string_value) end