Class: WhenIWork::InlineResponse200

Inherits:
Object
  • Object
show all
Includes:
Response
Defined in:
lib/wheniwork-ruby/models/inline_response_200.rb

Instance Attribute Summary collapse

Attributes included from Response

#raw_data

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Response

#_deserialize, #_to_hash, #build_from_hash, #eql?, #to_body, #to_hash, #to_s

Constructor Details

#initialize(attributes = {}) ⇒ InlineResponse200

Initializes the object

Parameters:

  • attributes (Hash) (defaults to: {})

    Model attributes in the form of hash



46
47
48
49
50
51
52
53
54
55
56
57
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 46

def initialize(attributes = {})
  return unless attributes.is_a?(Hash)

  # convert string to symbol for hash key
  attributes = attributes.each_with_object({}){|(k,v), h| h[k.to_sym] = v}

  if attributes.has_key?(:'positions')
    if (value = attributes[:'positions']).is_a?(Array)
      self.positions = value
    end
  end
end

Instance Attribute Details

#positionsObject

Returns the value of attribute positions.



28
29
30
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 28

def positions
  @positions
end

Class Method Details

.attribute_mapObject

Attribute mapping from ruby-style variable name to JSON key.



31
32
33
34
35
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 31

def self.attribute_map
  {
    :'positions' => :'positions'
  }
end

.swagger_typesObject

Attribute type mapping.



38
39
40
41
42
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 38

def self.swagger_types
  {
    :'positions' => :'Array<Position>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



73
74
75
76
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 73

def ==(o)
  return true if equal?(o)
  self.class == o.class && positions == o.positions
end

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



80
81
82
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 80

def hash
  [positions].hash
end

#list_invalid_propertiesObject

Show invalid properties with the reasons. Usually used together with valid?

Returns:

  • Array for valid properies with the reasons



61
62
63
64
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 61

def list_invalid_properties
  invalid_properties = Array.new
  return invalid_properties
end

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



68
69
# File 'lib/wheniwork-ruby/models/inline_response_200.rb', line 68

def valid?
end