Ejemplo n.º 1
0
 public void BatchUpdatePhotos()
 {
     // Snippet: BatchUpdatePhotos(IEnumerable<UpdatePhotoRequest>,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     IEnumerable <UpdatePhotoRequest> updatePhotoRequests = new List <UpdatePhotoRequest>();
     // Make the request
     BatchUpdatePhotosResponse response = streetViewPublishServiceClient.BatchUpdatePhotos(updatePhotoRequests);
     // End snippet
 }
Ejemplo n.º 2
0
 public void BatchUpdatePhotos_RequestObject()
 {
     // Snippet: BatchUpdatePhotos(BatchUpdatePhotosRequest,CallSettings)
     // Create client
     StreetViewPublishServiceClient streetViewPublishServiceClient = StreetViewPublishServiceClient.Create();
     // Initialize request argument(s)
     BatchUpdatePhotosRequest request = new BatchUpdatePhotosRequest
     {
         UpdatePhotoRequests = { },
     };
     // Make the request
     BatchUpdatePhotosResponse response = streetViewPublishServiceClient.BatchUpdatePhotos(request);
     // End snippet
 }