Skip to content

Commit

Permalink
Make property nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
StefMa committed Nov 8, 2023
1 parent b1493be commit 3677072
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ data class RetrievedProcess(
@SerialName("status") val status: String,
@SerialName("message") val message: String,
@SerialName("name_original") val nameOriginal: String,
@SerialName("name_custom") val nameCustom: String,
@SerialName("name_custom") val nameCustom: String?,
@SerialName("word_count_total") val wordCountTotal: Int,
@SerialName("key_count_total") val keyCountTotal: Int,
@SerialName("key_count_inserted") val keyCountInserted: Int,
Expand Down

0 comments on commit 3677072

Please sign in to comment.