Skip to content
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
Expand Up @@ -23,6 +23,8 @@ public class PaymentTransactionDataRequest {
private PaymentPaymentReferenceRequest paymentReference;
/** Billing date for the current invoice period (e.g. "2023-01-15"). */
private String billingDate;
/** Legacy card-network transaction identifier within transaction data. */
private String networkTransactionId;
/**
* Whether this is the first transaction for a CREDENTIAL_ON_FILE payment.
* Replaces the legacy {@code firstTimeUse} field in new integrations.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,9 @@ public class PaymentTransactionData {
/** Billing date for subscription or recurring payment invoices. */
private String billingDate;

/** Legacy card-network transaction identifier within transaction data. */
private String networkTransactionId;

/**
* Whether this is the first transaction for a CREDENTIAL_ON_FILE payment.
* Replaces the legacy {@code firstTimeUse} field in new integrations.
Expand Down