Method: OryClient::SettingsFlow#==

Defined in:
lib/ory-client/models/settings_flow.rb

#==(o) ⇒ Object

Checks equality by comparing each attribute.

Parameters:

  • Object (Object)

    to be compared



200
201
202
203
204
205
206
207
208
209
210
211
212
213
# File 'lib/ory-client/models/settings_flow.rb', line 200

def ==(o)
  return true if self.equal?(o)
  self.class == o.class &&
      active == o.active &&
      expires_at == o.expires_at &&
      id == o.id &&
      identity == o.identity &&
      issued_at == o.issued_at &&
      request_url == o.request_url &&
      return_to == o.return_to &&
      state == o.state &&
      type == o.type &&
      ui == o.ui
end