com.github.revenuemonster.model.Transactions 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;
import java.util.ArrayList;
public class Transactions {
ArrayList< TransactionQuickPayItem > items = new ArrayList < TransactionQuickPayItem > ();
Error ErrorObject;
Meta MetaObject;
private String code;
// Getter Methods
public Error getError() {
return ErrorObject;
}
public String getCode() {
return code;
}
public Meta getMeta() {
return MetaObject;
}
// Setter Methods
public void setError(Error errorObject) {
this.ErrorObject = errorObject;
}
public void setCode(String code) {
this.code = code;
}
public void setMeta(Meta metaObject) {
this.MetaObject = metaObject;
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy