![JAR search and dependency download from the Maven repository](/logo.png)
com.app55.message.TransactionCreateResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of app55-java Show documentation
Show all versions of app55-java Show documentation
App55 client library for the Java platform.
The newest version!
package com.app55.message;
import org.codehaus.jackson.annotate.JsonProperty;
import com.app55.domain.Transaction;
public final class TransactionCreateResponse extends Response
{
private Transaction transaction;
private String threeDSecureRedirectUrl;
public Transaction getTransaction()
{
return transaction;
}
public void setTransaction(Transaction transaction)
{
this.transaction = transaction;
}
@JsonProperty(value = "threeds")
public String getThreeDSecureRedirectUrl() {
return threeDSecureRedirectUrl;
}
public void setThreeDSecureRedirectUrl(String threeDSecureRedirectUrl) {
this.threeDSecureRedirectUrl = threeDSecureRedirectUrl;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy