Skip to content

Commit

Permalink
makes atype not nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
renam committed Apr 26, 2024
1 parent 7ecbed0 commit f908ef5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,6 @@ public class EID(
@Serializable
public class UID(
@JvmField @SerialName("id") public var id: String,
@JvmField @SerialName("atype") public var atype: Int? = null,
@JvmField @SerialName("atype") public var atype: Int = 0,
@JvmField @SerialName("ext") public var ext: Map<String, String> = mutableMapOf()
)

0 comments on commit f908ef5

Please sign in to comment.