Method: PureCloud::Organization#==

Defined in:
lib/purecloudplatformclientv2/models/organization.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
# File 'lib/purecloudplatformclientv2/models/organization.rb', line 189

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      name == o.name &&
      default_language == o.default_language &&
      default_country_code == o.default_country_code &&
      third_party_org_name == o.third_party_org_name &&
      third_party_uri == o.third_party_uri &&
      domain == o.domain &&
      version == o.version &&
      state == o.state &&
      default_site_id == o.default_site_id &&
      voicemail_enabled == o.voicemail_enabled &&
      self_uri == o.self_uri &&
      features == o.features
end