Administrative Unit Name Entity
data class AdministrativeUnitNameEntity(val id: Long = 0, val locality: String?, val subAdminArea: String?, val adminArea: String?, val countryName: String?)
The class representation of the entity 'AdministrativeUnitName' from the database. This entity stores information about the names of administrative units (e.g., city, county, state).
Constructors
Properties
Functions
Link copied to clipboard
Use all the information within a AdministrativeUnitNameEntity to build a AdministrativeUnitName object
Link copied to clipboard
fun AdministrativeUnitNameEntity.updateSubAdminArea(subAdminArea: String?): AdministrativeUnitNameEntity
Updates the subAdminArea property of the current AdministrativeUnitNameEntity to use a new value.