Skip to content

Commit

Permalink
bug :: dto 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
HyunSu1768 committed Aug 1, 2024
1 parent de89f18 commit 6522393
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
package xquare.app.xquareinfra.infrastructure.feign.client.gocd.dto.response

import com.fasterxml.jackson.annotation.JsonIgnoreProperties
import com.fasterxml.jackson.annotation.JsonProperty

data class GetPipelinesHistoryResponse(
Expand Down Expand Up @@ -68,6 +69,7 @@ data class Modification(
val emailAddress: Any?,
)

@JsonIgnoreProperties(ignoreUnknown = true)
data class Stage(
val result: String? = null,
val status: String,
Expand All @@ -77,7 +79,7 @@ data class Stage(
val counter: String,
val scheduled: Boolean,
@JsonProperty("approval_type")
val approvalType: String,
val approvalType: String? = null,
@JsonProperty("approved_by")
val approvedBy: String,
@JsonProperty("operate_permission")
Expand Down

0 comments on commit 6522393

Please sign in to comment.