com.testdroid.api.model.APIServicePaymentStatus Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of testdroid-api Show documentation
Show all versions of testdroid-api Show documentation
The Testdroid API library for Java
package com.testdroid.api.model;
import jakarta.xml.bind.annotation.XmlType;
/**
* @author Łukasz Kajda
*/
public class APIServicePaymentStatus {
@XmlType(name = "APIServicePaymentStatus")
public enum Status {
SUCCEEDED,
FAILED,
REDIRECTED
}
private String message;
private String redirectUrl;
private Status status;
private APIAccountService accountService;
public APIAccountService getAccountService() {
return accountService;
}
public void setAccountService(APIAccountService accountService) {
this.accountService = accountService;
}
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
public String getMessage() {
return message;
}
public void setMessage(String message) {
this.message = message;
}
public String getRedirectUrl() {
return redirectUrl;
}
public void setRedirectUrl(String redirectUrl) {
this.redirectUrl = redirectUrl;
}
}