Method: DocuSign_eSign::UserProfile#==
- Defined in:
- lib/docusign_esign/models/user_profile.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 |
# File 'lib/docusign_esign/models/user_profile.rb', line 162 def ==(o) return true if self.equal?(o) self.class == o.class && address == o.address && authentication_methods == o.authentication_methods && company_name == o.company_name && display_organization_info == o.display_organization_info && display_personal_info == o.display_personal_info && display_profile == o.display_profile && display_usage_history == o.display_usage_history && profile_image_uri == o.profile_image_uri && title == o.title && usage_history == o.usage_history && user_details == o.user_details && user_profile_last_modified_date == o.user_profile_last_modified_date end |