Class: TreasureData::Role
Instance Attribute Summary collapse
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#org_name ⇒ Object
readonly
Returns the value of attribute org_name.
-
#user_names ⇒ Object
readonly
Returns the value of attribute user_names.
Instance Method Summary collapse
-
#initialize(client, name, org_name, user_names) ⇒ Role
constructor
A new instance of Role.
Constructor Details
#initialize(client, name, org_name, user_names) ⇒ Role
Returns a new instance of Role.
467 468 469 470 471 472 |
# File 'lib/td/client/model.rb', line 467 def initialize(client, name, org_name, user_names) super(client) @name = name @org_name = org_name @user_names = user_names end |
Instance Attribute Details
#client ⇒ Object (readonly)
Returns the value of attribute client.
474 475 476 |
# File 'lib/td/client/model.rb', line 474 def client @client end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
474 475 476 |
# File 'lib/td/client/model.rb', line 474 def name @name end |
#org_name ⇒ Object (readonly)
Returns the value of attribute org_name.
474 475 476 |
# File 'lib/td/client/model.rb', line 474 def org_name @org_name end |
#user_names ⇒ Object (readonly)
Returns the value of attribute user_names.
474 475 476 |
# File 'lib/td/client/model.rb', line 474 def user_names @user_names end |