Listing property images
To list the images for a property, you'll need to use the PropertyImages.GetPropertyImagesAsync method on the API client:
var images = await client.PropertyImages.GetPropertyImagesAsync(propertyId);
The images variable will contain a collection of PropertyImageDetails objects, each of which will contain the following properties:
Id
- Type:
int - Description: Gets or sets the ID of the image.
- Type:
Url
- Type:
string - Description: Gets or sets the URL of the image.
- Type:
ThumbnailUrl
- Type:
string - Description: Gets or sets the URL of the thumbnail.
- Type:
Order
- Type:
int - Description: Gets or sets the order of the image.
- Type: