Method: OpenapiClient::AccessTokenRequest#valid?

Defined in:
lib/openapi_client/models/access_token_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



94
95
96
97
98
99
# File 'lib/openapi_client/models/access_token_request.rb', line 94

def valid?
  return false if @domain.nil?
  return false if @token.nil?
  return false if @public_key_required.nil?
  true
end