Class: Bio::BaseSpace::ResourceList

Inherits:
Model
  • Object
show all
Defined in:
lib/basespace/model/resource_list.rb

Overview

Resource list model.

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

#initializeResourceList

Create a new ResourceList instance.



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/basespace/model/resource_list.rb', line 23

def initialize
  @swagger_types = {
    'Items'           => 'list<Str>',
    'DisplayedCount'  => 'int',
    'SortDir'         => 'str',
    'TotalCount'      => 'int',
    'Offset'          => 'int',
    'SortBy'          => 'str',
    'Limit'           => 'int',
  }
  @attributes = {
    'Items'           => nil, # list<Str>
    'DisplayedCount'  => nil, # int
    'SortDir'         => nil, # str
    'TotalCount'      => nil, # int
    'Offset'          => nil, # int
    'SortBy'          => nil, # str
    'Limit'           => nil, # int
  }
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Bio::BaseSpace::Model