Class: Bio::BaseSpace::ApplicationCompact
- Defined in:
- lib/basespace/model/application_compact.rb
Overview
Application data returned by GET purchase.
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize ⇒ ApplicationCompact
constructor
Create a new instance.
-
#to_s ⇒ Object
Return the name of the App data returned by a GET purchase.
Methods inherited from Model
#get_attr, #method_missing, #set_attr
Constructor Details
#initialize ⇒ ApplicationCompact
Create a new instance.
23 24 25 26 27 28 29 30 31 32 33 34 |
# File 'lib/basespace/model/application_compact.rb', line 23 def initialize @swagger_types = { 'Id' => 'str', 'Name' => 'str', 'CompanyName' => 'str', } @attributes = { 'Id' => nil, 'Name' => nil, 'CompanyName' => nil, } end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Bio::BaseSpace::Model
Instance Method Details
#to_s ⇒ Object
Return the name of the App data returned by a GET purchase.
37 38 39 |
# File 'lib/basespace/model/application_compact.rb', line 37 def to_s return get_attr('Name').to_s end |