class Google::Apis::AdminReportsV1::UsageReport::Parameter

Attributes

bool_value[RW]

Output only. Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]

bool_value?[RW]

Output only. Boolean value of the parameter. Corresponds to the JSON property `boolValue` @return [Boolean]

datetime_value[RW]

The RFC 3339 formatted value of the parameter, for example 2010-10-28T10:26:35. 000Z. Corresponds to the JSON property `datetimeValue` @return [DateTime]

int_value[RW]

Output only. Integer value of the parameter. Corresponds to the JSON property `intValue` @return [Fixnum]

msg_value[RW]

Output only. Nested message value of the parameter. Corresponds to the JSON property `msgValue` @return [Array<Hash<String,Object>>]

name[RW]

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]

string_value[RW]

Output only. String value of the parameter. Corresponds to the JSON property `stringValue` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admin_reports_v1/classes.rb, line 615
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 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