namespace Amazon.Lambda.LexV2Events { /// /// Contains information about the next action that the bot will take if the Lambda function sets the dialogAction to Delegate. /// https://docs.aws.amazon.com/lexv2/latest/dg/lambda.html#request-proposednextstate /// public class LexV2ProposedNextState { /// /// Dialog action that Amazon Lex V2 will perform next. /// public LexV2DialogAction DialogAction { get; set; } /// /// Intent that the bot has determined that the user is trying to fulfill. /// public LexV2Intent Intent { get; set; } } }