Class: TreasureData::User
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#email ⇒ Object
readonly
Returns the value of attribute email.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#org_name ⇒ Object
readonly
Returns the value of attribute org_name.
-
#role_names ⇒ Object
readonly
Returns the value of attribute role_names.
Instance Method Summary collapse
-
#initialize(client, name, org_name, role_names, email) ⇒ User
constructor
A new instance of User.
Constructor Details
#initialize(client, name, org_name, role_names, email) ⇒ User
Returns a new instance of User.
797 798 799 800 801 |
# File 'lib/td/client/model.rb', line 797 def initialize(client, name, org_name, role_names, email) super(client) @name = name @email = email end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
803 804 805 |
# File 'lib/td/client/model.rb', line 803 def client @client end |
#email ⇒ Object (readonly)
Returns the value of attribute email.
803 804 805 |
# File 'lib/td/client/model.rb', line 803 def email @email end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
803 804 805 |
# File 'lib/td/client/model.rb', line 803 def name @name end |
#org_name ⇒ Object (readonly)
Returns the value of attribute org_name.
803 804 805 |
# File 'lib/td/client/model.rb', line 803 def org_name @org_name end |
#role_names ⇒ Object (readonly)
Returns the value of attribute role_names.
803 804 805 |
# File 'lib/td/client/model.rb', line 803 def role_names @role_names end |