Skip to content

Commit

Permalink
changing custom data to array type (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
truthfool authored and fynmanoj committed Jun 7, 2023
1 parent 6e1cf3d commit b93df0e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -35,13 +35,13 @@ public class TransactionChannelRequestDTO {
private String note;
private String expiration;
private ExtensionList extensionList;
private CustomData customData;
private List<CustomData> customData;

public CustomData getCustomData() {
public List<CustomData> getCustomData() {
return customData;
}

public void setCustomData(CustomData customData) {
public void setCustomData(List<CustomData> customData) {
this.customData = customData;
}

Expand Down

0 comments on commit b93df0e

Please sign in to comment.