Skip to content

Commit

Permalink
fix(#79-support-search): fuckery nullability
Browse files Browse the repository at this point in the history
  • Loading branch information
y9Kap committed Oct 30, 2023
1 parent 9af2d56 commit a58088c
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,11 @@ public data class UserSerializable(
@SerialName("nickname")
public val nickname: String,
@SerialName("avatarId")
public val avatarId: FileIdSerializable?,
public val avatarId: FileIdSerializable? = null,
@SerialName("isSelf")
public val isSelf: Boolean,
@SerialName("username")
public val username: UsernameSerializable?,
public val username: UsernameSerializable? = null,
@SerialName("relationship")
public val relationship: RelationshipSerializable? = null,
@SerialName("email")
Expand Down

0 comments on commit a58088c

Please sign in to comment.