/// <summary>Snippet for BatchUndeleteAlerts</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void BatchUndeleteAlertsRequestObject()
 {
     // Create client
     AlertCenterServiceClient alertCenterServiceClient = AlertCenterServiceClient.Create();
     // Initialize request argument(s)
     BatchUndeleteAlertsRequest request = new BatchUndeleteAlertsRequest
     {
         CustomerId = "",
         AlertId    = { "", },
     };
     // Make the request
     BatchUndeleteAlertsResponse response = alertCenterServiceClient.BatchUndeleteAlerts(request);
 }