/// <summary>Snippet for FulfillIntentAsync</summary>
        public async Task FulfillIntentRequestObjectAsync()
        {
            // Snippet: FulfillIntentAsync(FulfillIntentRequest, CallSettings)
            // Additional: FulfillIntentAsync(FulfillIntentRequest, CancellationToken)
            // Create client
            SessionsClient sessionsClient = await SessionsClient.CreateAsync();

            // Initialize request argument(s)
            FulfillIntentRequest request = new FulfillIntentRequest
            {
                MatchIntentRequest = new MatchIntentRequest(),
                Match             = new Match(),
                OutputAudioConfig = new OutputAudioConfig(),
            };
            // Make the request
            FulfillIntentResponse response = await sessionsClient.FulfillIntentAsync(request);

            // End snippet
        }