Class: Google::Apis::AnalyticsV3::UserRef

Inherits:
Object
  • Object
show all
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

JSON template for a user reference.

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) ⇒ UserRef

Returns a new instance of UserRef



5485
5486
5487
# File 'generated/google/apis/analytics_v3/classes.rb', line 5485

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

Instance Attribute Details

#emailString

Email ID of this user. Corresponds to the JSON property email

Returns:

  • (String)


5473
5474
5475
# File 'generated/google/apis/analytics_v3/classes.rb', line 5473

def email
  @email
end

#idString

User ID. Corresponds to the JSON property id

Returns:

  • (String)


5478
5479
5480
# File 'generated/google/apis/analytics_v3/classes.rb', line 5478

def id
  @id
end

#kindString

Corresponds to the JSON property kind

Returns:

  • (String)


5483
5484
5485
# File 'generated/google/apis/analytics_v3/classes.rb', line 5483

def kind
  @kind
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5490
5491
5492
5493
5494
# File 'generated/google/apis/analytics_v3/classes.rb', line 5490

def update!(**args)
  @email = args[:email] if args.key?(:email)
  @id = args[:id] if args.key?(:id)
  @kind = args[:kind] if args.key?(:kind)
end