Advertisement
Guest User

Untitled

a guest
Jun 4th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Go 0.39 KB | None | 0 0
  1.     req := &dialogflow2.DetectIntentRequest{
  2.         Session:     "projects/" + clientSession.BotId + "/agent/sessions/" + clientSession.SessionId,
  3.         QueryParams: &dialogflow2.QueryParameters{},
  4.         QueryInput: &dialogflow2.QueryInput{
  5.             Input: &dialogflow2.QueryInput_Text{
  6.                 Text: &dialogflow2.TextInput{
  7.                     Text:         msg,
  8.                     LanguageCode: clientSession.LangCode,
  9.                 },
  10.             },
  11.         },
  12.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement