class Bio::BaseSpace::ApplicationCompact

Application data returned by GET purchase.

Public Class Methods

new() click to toggle source

Create a new instance.

# 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

Public Instance Methods

to_s() click to toggle source

Return the name of the App data returned by a GET purchase.

# File lib/basespace/model/application_compact.rb, line 37
def to_s
  return get_attr('Name').to_s
end