module Restforce::Concerns::Authentication

def jwt?

authentication.
Internal: Returns true if jwt bearer token flow should be used for
def jwt?
  options[:jwt_key] &&
    options[:username] &&
    options[:client_id]
end