Class: Google::Apis::AnalyticsreportingV4::User

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/analyticsreporting_v4/classes.rb,
generated/google/apis/analyticsreporting_v4/representations.rb,
generated/google/apis/analyticsreporting_v4/representations.rb

Overview

Contains information to identify a particular user uniquely.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ User

Returns a new instance of User.



2059
2060
2061
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 2059

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#typeString

Type of the user in the request. The field userId is associated with this type. Corresponds to the JSON property type

Returns:

  • (String)


2052
2053
2054
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 2052

def type
  @type
end

#user_idString

Unique Id of the user for which the data is being requested. Corresponds to the JSON property userId

Returns:

  • (String)


2057
2058
2059
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 2057

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2064
2065
2066
2067
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 2064

def update!(**args)
  @type = args[:type] if args.key?(:type)
  @user_id = args[:user_id] if args.key?(:user_id)
end