RegionWithPolygonAndHoles

data class RegionWithPolygonAndHoles(val regionEntity: RegionEntity, val polygon: PolygonWithGeoLocations, val holes: List<PolygonWithGeoLocations>)

This class represents the combined result of retrieving a Region entity along with its associated polygon and holes data.

Constructors

Link copied to clipboard
constructor(regionEntity: RegionEntity, polygon: PolygonWithGeoLocations, holes: List<PolygonWithGeoLocations>)

Properties

Link copied to clipboard

A list of polygon entities representing holes within the main polygon (one-to-many relationship).

Link copied to clipboard

The main polygon entity of the region, including its geolocation data.

Link copied to clipboard

The region data retrieved from the database.

Functions

Link copied to clipboard