Skip to content

Commit

Permalink
Update readme
Browse files Browse the repository at this point in the history
  • Loading branch information
kev-le committed Feb 23, 2024
1 parent b4cc857 commit cc382f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ This function handles downloading the output photos to a specified directory.
```dotnet
JArray photosList = completedJob.photos;
DownloadAllPhotosResult downloadResults = await apiClient.DownloadAllPhotos(photosList, completedJob.profile, "/output/folder/");
DownloadAllPhotosResult downloadResults = await apiClient.DownloadAllPhotos(photosList, completedJob.profile, "/output/folder/path");
Console.WriteLine($"Success photos: [{string.Join(", ", downloadResults.SuccessPhotos)}]");
Console.WriteLine($"Erorred photos: [{string.Join(", ", downloadResults.ErroredPhotos)}]");
Expand All @@ -184,7 +184,7 @@ Erorred photos: [4.jpg]
OR

```dotnet
api.DownloadPhoto(photoId, "/path/to/photo");
api.DownloadPhoto(photoId, "/output/folder/path");
```

#### Delete photo
Expand Down

0 comments on commit cc382f9

Please sign in to comment.