Class: Bio::BaseSpace::ResponseStatus

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

Overview

Response status 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

#initializeResponseStatus

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