class Bio::BaseSpace::Application

An App representation, which contains data such as name, homepage URI, a short description and the data the App was created.

Public Class Methods

new() click to toggle source

Create a new instance.

# 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