Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[feat] Added new fields to transaction details #106

Merged
merged 1 commit into from
Dec 4, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
package it.gov.pagopa.receipt.pdf.datastore.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;
}
Loading