Method: YousignClient::UserOutput#==

Defined in:
lib/yousign_client/models/user_output.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
# File 'lib/yousign_client/models/user_output.rb', line 298

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      id == o.id &&
      firstname == o.firstname &&
      lastname == o.lastname &&
      email == o.email &&
      title == o.title &&
      phone == o.phone &&
      status == o.status &&
      organization == o.organization &&
      workspaces == o.workspaces &&
      permission == o.permission &&
      group == o.group &&
      created_at == o.created_at &&
      updated_at == o.updated_at &&
      deleted == o.deleted &&
      deleted_at == o.deleted_at &&
      config == o.config &&
      inwebo_user_request == o.inwebo_user_request &&
      saml_name_id == o.saml_name_id &&
      default_sign_image == o.default_sign_image &&
      notifications == o.notifications &&
      fast_sign == o.fast_sign &&
      full_name == o.full_name
end