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



410
411
412
413
414
415
416
417
418
419
420
421
# File 'lib/ory-client/models/oidc_configuration.rb', line 410

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