/// <summary>Snippet for SuggestFaqAnswers</summary>
 public void SuggestFaqAnswers()
 {
     // Snippet: SuggestFaqAnswers(string, CallSettings)
     // Create client
     ParticipantsClient participantsClient = ParticipantsClient.Create();
     // Initialize request argument(s)
     string parent = "projects/[PROJECT]/conversations/[CONVERSATION]/participants/[PARTICIPANT]";
     // Make the request
     SuggestFaqAnswersResponse response = participantsClient.SuggestFaqAnswers(parent);
     // End snippet
 }
 /// <summary>Snippet for SuggestFaqAnswers</summary>
 public void SuggestFaqAnswersResourceNames()
 {
     // Snippet: SuggestFaqAnswers(ParticipantName, CallSettings)
     // Create client
     ParticipantsClient participantsClient = ParticipantsClient.Create();
     // Initialize request argument(s)
     ParticipantName parent = ParticipantName.FromProjectConversationParticipant("[PROJECT]", "[CONVERSATION]", "[PARTICIPANT]");
     // Make the request
     SuggestFaqAnswersResponse response = participantsClient.SuggestFaqAnswers(parent);
     // End snippet
 }
 /// <summary>Snippet for SuggestFaqAnswers</summary>
 public void SuggestFaqAnswersRequestObject()
 {
     // Snippet: SuggestFaqAnswers(SuggestFaqAnswersRequest, CallSettings)
     // Create client
     ParticipantsClient participantsClient = ParticipantsClient.Create();
     // Initialize request argument(s)
     SuggestFaqAnswersRequest request = new SuggestFaqAnswersRequest
     {
         ParentAsParticipantName    = ParticipantName.FromProjectConversationParticipant("[PROJECT]", "[CONVERSATION]", "[PARTICIPANT]"),
         LatestMessageAsMessageName = MessageName.FromProjectConversationMessage("[PROJECT]", "[CONVERSATION]", "[MESSAGE]"),
         ContextSize = 0,
     };
     // Make the request
     SuggestFaqAnswersResponse response = participantsClient.SuggestFaqAnswers(request);
     // End snippet
 }