Class: WhenIWork::InlineResponse2002

Inherits:
Object
  • Object
show all
Includes:
Response
Defined in:
lib/wheniwork-ruby/models/inline_response_200_2.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 = {}) ⇒ InlineResponse2002

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
# File 'lib/wheniwork-ruby/models/inline_response_200_2.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?(:'shift')
    self.shift = attributes[:'shift']
  end

end

Instance Attribute Details

#shiftObject

Returns the value of attribute shift.



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

def shift
  @shift
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_2.rb', line 31

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

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    :'shift' => :'Shift'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



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

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

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



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

def hash
  [shift].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



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

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



67
68
# File 'lib/wheniwork-ruby/models/inline_response_200_2.rb', line 67

def valid?
end