Skip to content

Commit

Permalink
fix: add status_code prop in AnnotationResponse
Browse files Browse the repository at this point in the history
Closes #4896
  • Loading branch information
VaiTon committed Mar 18, 2023
1 parent 2626919 commit 17af32c
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ import com.fasterxml.jackson.annotation.JsonProperty
import java.io.Serializable

data class AnnotationResponse(
@JsonProperty("status") val status: String? = null,
@JsonProperty("description") val description: String? = null
@JsonProperty("status") val status: String? = null,
@JsonProperty("description") val description: String? = null,
@JsonProperty("status_code") val statusCode: String? = null,
) : Serializable {

companion object {
Expand Down

0 comments on commit 17af32c

Please sign in to comment.