Skip to content

Commit

Permalink
chore: Fix naming in ContractAgreementTransferRequestParams (UI API W…
Browse files Browse the repository at this point in the history
…rapper) (#479)
  • Loading branch information
AnurosePrakash authored Aug 10, 2023
1 parent e416ea1 commit 8959338
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,6 @@ public class ContractAgreementTransferRequestParams {
@Schema(description = "Data Sink / Data Address", requiredMode = Schema.RequiredMode.REQUIRED)
private Map<String, String> dataSinkProperties;

@Schema(description = "Additional private properties to add to the transfer process, which are not passed to the consumer", requiredMode = Schema.RequiredMode.REQUIRED)
private Map<String, String> privateProperties;
@Schema(description = "Additional transfer process properties. These are not passed to the consumer EDC", requiredMode = Schema.RequiredMode.REQUIRED)
private Map<String, String> transferProcessProperties;
}
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ private TransferRequest buildTransferRequest(
.contractId(contractId)
.assetId(agreement.getAssetId())
.dataDestination(address)
.privateProperties(params.getPrivateProperties())
.privateProperties(params.getTransferProcessProperties())
.callbackAddresses(List.of())
.build();
}
Expand Down

0 comments on commit 8959338

Please sign in to comment.