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
6 changes: 3 additions & 3 deletions sdk-generation-log/payout.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"service": "payout",
"project": "java",
"generatedAt": "2026-05-14T14:22:09Z",
"openapiCommitSha": "cbc5406a2df1f24d50e40742f18342f7ca7f21fc",
"generatedAt": "2026-06-15T16:42:59Z",
"openapiCommitSha": "fe790646de44602c0531c3ebd57c966876c7a1c7",
"automationCommitSha": "6f06b47d0661f0891defe6b85461d2c367fbd284",
"libraryCommitSha": "5790580db2f8a931a68baba2bff9760b8aed2067"
"libraryCommitSha": "b2998c6eecc506e2d7ef07cc9b1eed1ee389a21b"
}
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@
ResponseAdditionalDataCommon.JSON_PROPERTY_TOKENIZATION_SHOPPER_REFERENCE,
ResponseAdditionalDataCommon.JSON_PROPERTY_TOKENIZATION_STORE_OPERATION_TYPE,
ResponseAdditionalDataCommon.JSON_PROPERTY_TOKENIZATION_STORED_PAYMENT_METHOD_ID,
ResponseAdditionalDataCommon.JSON_PROPERTY_TRANSACTION_LINK_ID,
ResponseAdditionalDataCommon.JSON_PROPERTY_VISA_TRANSACTION_ID,
ResponseAdditionalDataCommon.JSON_PROPERTY_XID
})
Expand Down Expand Up @@ -662,6 +663,12 @@ public static TokenizationStoreOperationTypeEnum fromValue(String value) {
/** Mark when the attribute has been explicitly set. */
private boolean isSetTokenizationStoredPaymentMethodId = false;

public static final String JSON_PROPERTY_TRANSACTION_LINK_ID = "transactionLinkId";
private String transactionLinkId;

/** Mark when the attribute has been explicitly set. */
private boolean isSetTransactionLinkId = false;

public static final String JSON_PROPERTY_VISA_TRANSACTION_ID = "visaTransactionId";
private String visaTransactionId;

Expand Down Expand Up @@ -3279,6 +3286,47 @@ public void setTokenizationStoredPaymentMethodId(String tokenizationStoredPaymen
isSetTokenizationStoredPaymentMethodId = true; // mark as set
}

/**
* Returned in the response for Mastercard payments. This contains the Mastercard Transaction Link
* Identifier (TLID).
*
* @param transactionLinkId Returned in the response for Mastercard payments. This contains the
* Mastercard Transaction Link Identifier (TLID).
* @return the current {@code ResponseAdditionalDataCommon} instance, allowing for method chaining
*/
public ResponseAdditionalDataCommon transactionLinkId(String transactionLinkId) {
this.transactionLinkId = transactionLinkId;
isSetTransactionLinkId = true; // mark as set
return this;
}

/**
* Returned in the response for Mastercard payments. This contains the Mastercard Transaction Link
* Identifier (TLID).
*
* @return transactionLinkId Returned in the response for Mastercard payments. This contains the
* Mastercard Transaction Link Identifier (TLID).
*/
@JsonProperty(JSON_PROPERTY_TRANSACTION_LINK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public String getTransactionLinkId() {
return transactionLinkId;
}

/**
* Returned in the response for Mastercard payments. This contains the Mastercard Transaction Link
* Identifier (TLID).
*
* @param transactionLinkId Returned in the response for Mastercard payments. This contains the
* Mastercard Transaction Link Identifier (TLID).
*/
@JsonProperty(JSON_PROPERTY_TRANSACTION_LINK_ID)
@JsonInclude(value = JsonInclude.Include.USE_DEFAULTS)
public void setTransactionLinkId(String transactionLinkId) {
this.transactionLinkId = transactionLinkId;
isSetTransactionLinkId = true; // mark as set
}

/**
* The `visaTransactionId`, has a fixed length of 15 numeric characters. > Contact
* Support Team to enable this field.
Expand Down Expand Up @@ -3610,6 +3658,9 @@ public boolean equals(Object o) {
&& Objects.equals(
this.isSetTokenizationStoredPaymentMethodId,
responseAdditionalDataCommon.isSetTokenizationStoredPaymentMethodId)
&& Objects.equals(this.transactionLinkId, responseAdditionalDataCommon.transactionLinkId)
&& Objects.equals(
this.isSetTransactionLinkId, responseAdditionalDataCommon.isSetTransactionLinkId)
&& Objects.equals(this.visaTransactionId, responseAdditionalDataCommon.visaTransactionId)
&& Objects.equals(
this.isSetVisaTransactionId, responseAdditionalDataCommon.isSetVisaTransactionId)
Expand Down Expand Up @@ -3744,6 +3795,8 @@ public int hashCode() {
isSetTokenizationStoreOperationType,
tokenizationStoredPaymentMethodId,
isSetTokenizationStoredPaymentMethodId,
transactionLinkId,
isSetTransactionLinkId,
visaTransactionId,
isSetVisaTransactionId,
xid,
Expand Down Expand Up @@ -3860,6 +3913,7 @@ public String toString() {
sb.append(" tokenizationStoredPaymentMethodId: ")
.append(toIndentedString(tokenizationStoredPaymentMethodId))
.append("\n");
sb.append(" transactionLinkId: ").append(toIndentedString(transactionLinkId)).append("\n");
sb.append(" visaTransactionId: ").append(toIndentedString(visaTransactionId)).append("\n");
sb.append(" xid: ").append(toIndentedString(xid)).append("\n");
sb.append("}");
Expand Down Expand Up @@ -4088,6 +4142,9 @@ public Map<String, Object> getExplicitNulls() {
JSON_PROPERTY_TOKENIZATION_STORED_PAYMENT_METHOD_ID,
this.tokenizationStoredPaymentMethodId);
}
if (isSetTransactionLinkId) {
addIfNull(nulls, JSON_PROPERTY_TRANSACTION_LINK_ID, this.transactionLinkId);
}
if (isSetVisaTransactionId) {
addIfNull(nulls, JSON_PROPERTY_VISA_TRANSACTION_ID, this.visaTransactionId);
}
Expand Down
Loading