Class: WhenIWork::InlineResponse2003

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

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
58
# File 'lib/wheniwork-ruby/models/inline_response_200_3.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?(:'users')
    if (value = attributes[:'users']).is_a?(Array)
      self.users = value
    end
  end

end

Instance Attribute Details

#usersObject

Returns the value of attribute users.



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

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

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

.swagger_typesObject

Attribute type mapping.



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

def self.swagger_types
  {
    :'users' => :'Array<User>'
  }
end

Instance Method Details

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



74
75
76
77
78
# File 'lib/wheniwork-ruby/models/inline_response_200_3.rb', line 74

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

#hashFixnum

Calculates hash code according to all attributes.

Returns:

  • (Fixnum)

    Hash code



82
83
84
# File 'lib/wheniwork-ruby/models/inline_response_200_3.rb', line 82

def hash
  [users].hash
end

#list_invalid_propertiesObject

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

Returns:

  • Array for valid properies with the reasons



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

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



69
70
# File 'lib/wheniwork-ruby/models/inline_response_200_3.rb', line 69

def valid?
end