Class: Bio::BaseSpace::ResponseStatus
- Defined in:
- lib/basespace/model/response_status.rb
Overview
Response status model.
Instance Attribute Summary
Attributes inherited from Model
Instance Method Summary collapse
-
#initialize ⇒ ResponseStatus
constructor
Create a new ResponseStatus instance.
Methods inherited from Model
#get_attr, #method_missing, #set_attr, #to_str
Constructor Details
#initialize ⇒ ResponseStatus
Create a new ResponseStatus instance.
23 24 25 26 27 28 29 30 31 32 33 34 35 36 |
# File 'lib/basespace/model/response_status.rb', line 23 def initialize @swagger_types = { 'Message' => 'str', 'Errors' => 'list<Str>', 'ErrorCode' => 'str', 'StackTrace' => 'str', } @attributes = { 'Message' => nil, # str 'Errors' => nil, # list<Str> 'ErrorCode' => nil, # str 'StackTrace' => nil, # str } end |
Dynamic Method Handling
This class handles dynamic methods through the method_missing method in the class Bio::BaseSpace::Model