Method: OryClient::OidcConfiguration#valid?

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

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



390
391
392
393
394
395
396
397
398
399
400
401
# File 'lib/ory-client/models/oidc_configuration.rb', line 390

def valid?
  return false if @authorization_endpoint.nil?
  return false if @id_token_signed_response_alg.nil?
  return false if @id_token_signing_alg_values_supported.nil?
  return false if @issuer.nil?
  return false if @jwks_uri.nil?
  return false if @response_types_supported.nil?
  return false if @subject_types_supported.nil?
  return false if @token_endpoint.nil?
  return false if @userinfo_signed_response_alg.nil?
  true
end