Skip to content

Commit

Permalink
PI-2667 Common Platform Address records - OS Places API
Browse files Browse the repository at this point in the history
  • Loading branch information
joseph-bcl committed Dec 10, 2024
1 parent 802c9d6 commit 583ef44
Showing 1 changed file with 19 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,34 @@ data class OsPlacesResponse(
)

data class OsPlacesHeader(
@JsonProperty("uri")
val uri: String?,
@JsonProperty("query")
val query: String?,
@JsonProperty("offset")
val offset: Int?,
val totalresults: Int?,
@JsonProperty("totalresults")
val totalResults: Int?,
@JsonProperty("format")
val format: String?,
@JsonProperty("dataset")
val dataset: String?,
@JsonProperty("lr")
val lr: String?,
val maxresults: Int?,
val matchprecision: Double?,
@JsonProperty("maxresults")
val maxResults: Int?,
@JsonProperty("matchprecision")
val matchPrecision: Double?,
@JsonProperty("filter")
val filter: String?,
@JsonProperty("srs")
val srs: String?,
@JsonProperty("epoch")
val epoch: String?,
val lastupdate: String?,
val output_srs: String?
@JsonProperty("lastupdate")
val lastUpdate: String?,
@JsonProperty("output_srs")
val outputSrs: String?
)

class DpaWrapper {
Expand Down

0 comments on commit 583ef44

Please sign in to comment.