add toString to TransactionPaymentResponseDTO

This commit is contained in:
2025-05-31 12:45:01 +02:00
parent 45c607060a
commit a09603f8cb

View File

@@ -54,6 +54,27 @@ import lombok.Setter;
private double amountPaid; private double amountPaid;
private DateInfo date; private DateInfo date;
} }
@Override
public String toString() {
return "YourClassName{" +
"result='" + result + '\'' +
", requestId='" + requestId + '\'' +
", transactionId='" + transactionId + '\'' +
", title='" + title + '\'' +
", posId='" + posId + '\'' +
", status='" + status + '\'' +
", date=" + date +
", amount=" + amount +
", currency='" + currency + '\'' +
", description='" + description + '\'' +
", hiddenDescription='" + hiddenDescription + '\'' +
", payer=" + payer +
", payments=" + payments +
", transactionPaymentUrl='" + transactionPaymentUrl + '\'' +
'}';
}
} }