class Fastly

def new_token(opts)

def new_token(opts)
  opts[:username] = client.user
  opts[:password] = client.password
  opts[:include_auth] = false
  
  token = create(Token, opts)
  token.nil? ? nil : token
end