Class: TreasureData::Result
Instance Attribute Summary collapse
-
#name ⇒ Object
readonly
Returns the value of attribute name.
-
#org_name ⇒ Object
readonly
Returns the value of attribute org_name.
-
#url ⇒ Object
readonly
Returns the value of attribute url.
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize(client, name, url, org_name) ⇒ Result
constructor
A new instance of Result.
Constructor Details
#initialize(client, name, url, org_name) ⇒ Result
Returns a new instance of Result.
407 408 409 410 411 412 |
# File 'lib/td/client/model.rb', line 407 def initialize(client, name, url, org_name) super(client) @name = name @url = url @org_name = org_name end |
Instance Attribute Details
#name ⇒ Object (readonly)
Returns the value of attribute name.
414 415 416 |
# File 'lib/td/client/model.rb', line 414 def name @name end |
#org_name ⇒ Object (readonly)
Returns the value of attribute org_name.
414 415 416 |
# File 'lib/td/client/model.rb', line 414 def org_name @org_name end |
#url ⇒ Object (readonly)
Returns the value of attribute url.
414 415 416 |
# File 'lib/td/client/model.rb', line 414 def url @url end |