Skip to content

Commit

Permalink
Fix json property annotation in AttachmentUploadForm
Browse files Browse the repository at this point in the history
  • Loading branch information
valldrac committed May 10, 2024
1 parent f3a62bb commit 7d9ffe9
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,18 +7,18 @@ import com.fasterxml.jackson.annotation.JsonProperty
*/
data class AttachmentUploadForm(
@JvmField
@JsonProperty
@JsonProperty("cdn")
val cdn: Int,

@JvmField
@JsonProperty
@JsonProperty("key")
val key: String,

@JvmField
@JsonProperty
@JsonProperty("headers")
val headers: Map<String, String>,

@JvmField
@JsonProperty
@JsonProperty("signedUploadLocation")
val signedUploadLocation: String
)

0 comments on commit 7d9ffe9

Please sign in to comment.