Skip to content

Commit

Permalink
Merge pull request #20 from pagopa/feat-add-new-transaction-fields
Browse files Browse the repository at this point in the history
[feat] Added new fields to transaction details
  • Loading branch information
pasqualespica authored Dec 4, 2023
2 parents bffcc86 + c54de09 commit 55a6d91
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package it.gov.pagopa.receipt.pdf.helpdesk.entity.event;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.*;

@Getter
@Setter
@NoArgsConstructor
@AllArgsConstructor
@Builder
@JsonIgnoreProperties(ignoreUnknown = true)
public class InfoTransaction {

private String brand;
private String brandLogo;
private String clientId;
private String paymentMethodName;
private String type;
}
Original file line number Diff line number Diff line change
Expand Up @@ -22,4 +22,5 @@ public class Transaction {
private String numAut;
private String accountCode;
private TransactionPsp psp;
private String origin;
}
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,5 @@ public class TransactionDetails {
private User user;
private Transaction transaction;
private WalletItem wallet;
private InfoTransaction info;
}

0 comments on commit 55a6d91

Please sign in to comment.