com.github.revenuemonster.model.TransactionQR Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of RevenueMonsterOpenAPI Show documentation
Show all versions of RevenueMonsterOpenAPI Show documentation
This is an Java SDK that maps some of the RESTful methods of Open API that are documented at doc.revenuemonster.my
The newest version!
package com.github.revenuemonster.model;
public class TransactionQR {
TransactionQRItem ItemObject;
Error ErrorObject;
private String code;
// Getter Methods
public TransactionQRItem getItem() {
return ItemObject;
}
public Error getError() {
return ErrorObject;
}
public String getCode() {
return code;
}
// Setter Methods
public void setItem(TransactionQRItem itemObject) {
this.ItemObject = itemObject;
}
public void setError(Error errorObject) {
this.ErrorObject = errorObject;
}
public void setCode(String code) {
this.code = code;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy