Request object to use with PlacesClient to fetch a photo.
If the image is smaller than the values specified, the original image will be returned. If
the image is larger in either dimension, it will be scaled to match the smaller of the two
dimensions, restricted to its original aspect ratio. CGSize height and width should be set
to an integer between 1 and 4800. If not, the PlacesClient request callback will return
an error.
[[["Easy to understand","easyToUnderstand","thumb-up"],["Solved my problem","solvedMyProblem","thumb-up"],["Other","otherUp","thumb-up"]],[["Missing the information I need","missingTheInformationINeed","thumb-down"],["Too complicated / too many steps","tooComplicatedTooManySteps","thumb-down"],["Out of date","outOfDate","thumb-down"],["Samples / code issue","samplesCodeIssue","thumb-down"],["Other","otherDown","thumb-down"]],["Last updated 2025-03-24 UTC."],[[["`FetchPhotoRequest` is a struct used to request a photo for a specific place, along with its properties."],["It initializes with a `Photo` object and a `maxSize` of type `CGSize` to define the desired photo dimensions."],["The returned photo will either be the original if smaller than `maxSize` or scaled down while maintaining aspect ratio."],["`maxSize` height and width must be within the range of 1 to 4800, otherwise, the request will result in an error."]]],["The `FetchPhotoRequest` struct is used to request a photo from a specific place, including specified properties. It initializes with a `Photo` and `maxSize` (CGSize). The photo will be scaled down if it exceeds the `maxSize` dimensions, maintaining its aspect ratio. Dimensions must be integers between 1 and 4800; otherwise, the request will fail. The struct interacts with `PlacesClient` to fetch the requested photo.\n"]]