Method: OpenapiClient::ClientRequest#valid?

Defined in:
lib/openapi_client/models/client_request.rb

#valid?Boolean

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

Returns:

  • (Boolean)

    true if the model is valid



119
120
121
122
123
124
# File 'lib/openapi_client/models/client_request.rb', line 119

def valid?
  return false if @client_secret.nil?
  return false if @redirect_uris.nil?
  return false if @name.nil?
  true
end