Class: Bio::BaseSpace::Application
- Defined in:
- lib/basespace/model/application.rb
Overview
An App representation, which contains data such as name, homepage URI, a short description and the data the App was created.
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize ⇒ Application
constructor
Create a new instance.
Methods inherited from Model
#get_attr, #method_missing, #set_attr, #to_s
Constructor Details
#initialize ⇒ Application
Create a new instance.
24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/basespace/model/application.rb', line 24 def initialize @swagger_types = { 'Id' => 'str', 'Href' => 'str', 'Name' => 'str', 'HomepageUri' => 'str', 'ShortDescription' => 'str', 'DateCreated' => 'datetime', } @attributes = { 'Id' => nil, 'Href' => nil, 'Name' => nil, 'HomepageUri' => nil, 'ShortDescription' => nil, 'DateCreated' => nil, } end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Bio::BaseSpace::Model