/// <summary>Snippet for UpdateParticipant</summary>
 public void UpdateParticipant()
 {
     // Snippet: UpdateParticipant(Participant, FieldMask, CallSettings)
     // Create client
     ParticipantsClient participantsClient = ParticipantsClient.Create();
     // Initialize request argument(s)
     Participant participant = new Participant();
     FieldMask   updateMask  = new FieldMask();
     // Make the request
     Participant response = participantsClient.UpdateParticipant(participant, updateMask);
     // End snippet
 }
 /// <summary>Snippet for UpdateParticipant</summary>
 public void UpdateParticipantRequestObject()
 {
     // Snippet: UpdateParticipant(UpdateParticipantRequest, CallSettings)
     // Create client
     ParticipantsClient participantsClient = ParticipantsClient.Create();
     // Initialize request argument(s)
     UpdateParticipantRequest request = new UpdateParticipantRequest
     {
         Participant = new Participant(),
         UpdateMask  = new FieldMask(),
     };
     // Make the request
     Participant response = participantsClient.UpdateParticipant(request);
     // End snippet
 }