Skip to content

Commit

Permalink
Merge pull request #278 from danger/fix-user-optional-fields
Browse files Browse the repository at this point in the history
fix(github): user optional fields
  • Loading branch information
Vacxe authored Apr 24, 2024
2 parents b5747bd + 30da003 commit c9bbb82
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,11 @@ enum class GitHubUserType {
*/
@Serializable
data class GitHubUser(
val id: Long,
val login: String,
val type: GitHubUserType,
val id: Long?,
val login: String?,
val type: GitHubUserType?,
@SerialName("avatar_url")
val avatarUrl: String
val avatarUrl: String?
)

@Serializable
Expand Down

0 comments on commit c9bbb82

Please sign in to comment.