Skip to content

Commit

Permalink
bug: #963 remove edc namespace from contract agreement response
Browse files Browse the repository at this point in the history
  • Loading branch information
ds-lcapellino committed May 15, 2024
1 parent 35ae705 commit 0787e87
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public record EdcContractAgreementNegotiationResponse(@JsonProperty("@id") String correlationId,
@JsonProperty("edc:counterPartyId") String counterPartyId,
@JsonProperty("counterPartyId") String counterPartyId,
@JsonProperty(
"edc:counterPartyAddress") String counterPartyAddress,
@JsonProperty("edc:protocol") String protocol,
@JsonProperty("edc:state") String state,
@JsonProperty("edc:type") String type) {
"counterPartyAddress") String counterPartyAddress,
@JsonProperty("protocol") String protocol,
@JsonProperty("state") String state,
@JsonProperty("type") String type) {
}
Original file line number Diff line number Diff line change
Expand Up @@ -32,10 +32,10 @@
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public record EdcContractAgreementsResponse(@JsonProperty("@id") String contractAgreementId,
@JsonProperty("edc:providerId") String providerId,
@JsonProperty("edc:consumerId") String consumerId,
@JsonProperty("edc:contractSigningDate") long contractSigningDate,
@JsonProperty("edc:assetId") String assetId,
@JsonProperty("providerId") String providerId,
@JsonProperty("consumerId") String consumerId,
@JsonProperty("contractSigningDate") long contractSigningDate,
@JsonProperty("assetId") String assetId,
@JsonProperty("@type") String type,
@JsonProperty("edc:policy") Object policy) {
@JsonProperty("policy") Object policy) {
}

0 comments on commit 0787e87

Please sign in to comment.