Method: OryClient::Identity#valid?

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

#valid?Boolean

Check to see if the all the properties in the model are valid

Returns:

  • (Boolean)

    true if the model is valid



203
204
205
206
207
208
# File 'lib/ory-client/models/identity.rb', line 203

def valid?
  return false if @id.nil?
  return false if @schema_id.nil?
  return false if @schema_url.nil?
  true
end