Method: DocuSign_eSign::ExternalFolder#==

Defined in:
lib/docusign_esign/models/external_folder.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



146
147
148
149
150
151
152
153
154
155
156
157
158
159
# File 'lib/docusign_esign/models/external_folder.rb', line 146

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      end_position == o.end_position &&
      error_details == o.error_details &&
      id == o.id &&
      items == o.items &&
      name == o.name &&
      next_uri == o.next_uri &&
      previous_uri == o.previous_uri &&
      result_set_size == o.result_set_size &&
      start_position == o.start_position &&
      total_set_size == o.total_set_size
end