Method: DocuSign_eSign::Folder#==
- Defined in:
- lib/docusign_esign/models/folder.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 |
# File 'lib/docusign_esign/models/folder.rb', line 163 def ==(o) return true if self.equal?(o) self.class == o.class && error_details == o.error_details && filter == o.filter && folder_id == o.folder_id && folders == o.folders && name == o.name && owner_email == o.owner_email && owner_user_id == o.owner_user_id && owner_user_name == o.owner_user_name && parent_folder_id == o.parent_folder_id && parent_folder_uri == o.parent_folder_uri && type == o.type && uri == o.uri end |