Class: Bio::BaseSpace::ResourceList
- Defined in:
- lib/basespace/model/resource_list.rb
Overview
Resource list model.
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize ⇒ ResourceList
constructor
Create a new ResourceList instance.
Methods inherited from Model
#get_attr, #method_missing, #set_attr, #to_s
Constructor Details
#initialize ⇒ ResourceList
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