Class: Bio::BaseSpace::Application

Inherits:
Model
  • Object
show all
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

#attributes, #swagger_types

Instance Method Summary collapse

Methods inherited from Model

#get_attr, #method_missing, #set_attr, #to_s

Constructor Details

#initializeApplication

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