Method: DocuSign_eSign::Workspace#==
- Defined in:
- lib/docusign_esign/models/workspace.rb
#==(o) ⇒ Object
Checks equality by comparing each attribute.
170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 |
# File 'lib/docusign_esign/models/workspace.rb', line 170 def ==(o) return true if self.equal?(o) self.class == o.class && billable_account_id == o.billable_account_id && caller_information == o.caller_information && created == o.created && created_by_information == o.created_by_information && last_modified == o.last_modified && last_modified_by_information == o.last_modified_by_information && settings == o.settings && status == o.status && workspace_base_url == o.workspace_base_url && workspace_description == o.workspace_description && workspace_id == o.workspace_id && workspace_name == o.workspace_name && workspace_uri == o.workspace_uri end |