Skip to content

Commit

Permalink
fix: add missing attributes in person data class
Browse files Browse the repository at this point in the history
closes #88
  • Loading branch information
berka3 committed Jul 3, 2024
1 parent 4e9f31e commit 7aff0d8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
org.gradle.parallel=true
org.gradle.caching=true

version=1.0.1
version=1.0.2-SNAPSHOT
groupId="com.open200"
kotlin.code.style=official
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,10 @@ data class Person(
val outdatedMedia: Boolean? = null,
val externalId: String? = null,
val external: Boolean? = null,
val defaultAuthorizationProfile: String? = null,
val zones: List<@Serializable(with = UUIDSerializer::class) UUID>? = emptyList(),
val installationPoints: List<@Serializable(with = UUIDSerializer::class) UUID>? = emptyList(),
@Serializable(with = UUIDSerializer::class) val defaultAuthorizationProfileId: UUID? = null
) : QueryListResource, QueryElementResource {

companion object {
Expand Down

0 comments on commit 7aff0d8

Please sign in to comment.