/// <summary>Snippet for BatchCreateRows</summary>
 /// <remarks>
 /// This snippet has been automatically generated for illustrative purposes only.
 /// It may require modifications to work in your environment.
 /// </remarks>
 public void BatchCreateRowsRequestObject()
 {
     // Create client
     TablesServiceClient tablesServiceClient = TablesServiceClient.Create();
     // Initialize request argument(s)
     BatchCreateRowsRequest request = new BatchCreateRowsRequest
     {
         Parent   = "",
         Requests =
         {
             new CreateRowRequest(),
         },
     };
     // Make the request
     BatchCreateRowsResponse response = tablesServiceClient.BatchCreateRows(request);
 }