![JAR search and dependency download from the Maven repository](/logo.png)
com.payu.sdk.api.model.Order Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
A fresh implementation of the PayU API Client for Android
The newest version!
package com.payu.sdk.api.model;
public class Order {
private int id;
private int accountId;
private OrderState status;
private String referenceCode;
private String description;
public String getReferenceCode() {
return referenceCode;
}
public void setReferenceCode(String referenceCode) {
this.referenceCode = referenceCode;
}
public String getDescription() {
return description;
}
public void setDescription(String description) {
this.description = description;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public int getAccountId() {
return accountId;
}
public void setAccountId(int accountId) {
this.accountId = accountId;
}
public OrderState getStatus() {
return status;
}
public void setStatus(OrderState status) {
this.status = status;
}
@Override public String toString() {
return "Order:" + "{" + "id=" + id + "," + "accountId=" + accountId + "," + "status=" + status
+ "," + "referenceCode=" + referenceCode + "," + "description=" + description + "}";
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy