Class: Google::Apis::AnalyticsV3::UserDeletionRequest::Id
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsV3::UserDeletionRequest::Id
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/analytics_v3/classes.rb,
generated/google/apis/analytics_v3/representations.rb,
generated/google/apis/analytics_v3/representations.rb
Overview
User ID.
Instance Attribute Summary collapse
-
#type ⇒ String
Type of user Corresponds to the JSON property
type
. -
#user_id ⇒ String
The User's id Corresponds to the JSON property
userId
.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Id
constructor
A new instance of Id.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ Id
Returns a new instance of Id
5454 5455 5456 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 5454 def initialize(**args) update!(**args) end |
Instance Attribute Details
#type ⇒ String
Type of user
Corresponds to the JSON property type
5447 5448 5449 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 5447 def type @type end |
#user_id ⇒ String
The User's id
Corresponds to the JSON property userId
5452 5453 5454 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 5452 def user_id @user_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5459 5460 5461 5462 |
# File 'generated/google/apis/analytics_v3/classes.rb', line 5459 def update!(**args) @type = args[:type] if args.key?(:type) @user_id = args[:user_id] if args.key?(:user_id) end |