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

Constructor Details

#initialize(**args) ⇒ User

Returns a new instance of User.



1975
1976
1977
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1975

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)


1968
1969
1970
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1968

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)


1973
1974
1975
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1973

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1980
1981
1982
1983
# File 'generated/google/apis/analyticsreporting_v4/classes.rb', line 1980

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