Ejemplo n.º 1
0
 public void BatchDeletePhotos()
 {
     // Snippet: BatchDeletePhotos(IEnumerable<string>,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     IEnumerable <string> photoIds = new List <string>();
     // Make the request
     BatchDeletePhotosResponse response = streetViewPublishServiceClient.BatchDeletePhotos(photoIds);
     // End snippet
 }
Ejemplo n.º 2
0
 public void BatchDeletePhotos_RequestObject()
 {
     // Snippet: BatchDeletePhotos(BatchDeletePhotosRequest,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     BatchDeletePhotosRequest request = new BatchDeletePhotosRequest
     {
         PhotoIds = { },
     };
     // Make the request
     BatchDeletePhotosResponse response = streetViewPublishServiceClient.BatchDeletePhotos(request);
     // End snippet
 }