We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The sample here: https://github.com/aws/aws-lambda-go/blob/master/events/README_Lex.md
References:
*lex.LexResponse
However, this struct is not defined in lex.go:
https://github.com/aws/aws-lambda-go/blob/master/events/lex.go
Creating a custom struct worked as a workaround:
type LexResponse struct { SessionAttributes map[string]string json:"sessionAttributes,omitempty" DialogAction *events.LexDialogAction json:"dialogAction,omitempty" }
json:"sessionAttributes,omitempty"
json:"dialogAction,omitempty"
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The sample here: https://github.com/aws/aws-lambda-go/blob/master/events/README_Lex.md
References:
*lex.LexResponse
However, this struct is not defined in lex.go:
https://github.com/aws/aws-lambda-go/blob/master/events/lex.go
Creating a custom struct worked as a workaround:
type LexResponse struct {
SessionAttributes map[string]string
json:"sessionAttributes,omitempty"
DialogAction *events.LexDialogAction
json:"dialogAction,omitempty"
}
The text was updated successfully, but these errors were encountered: