All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.revenuemonster.model.TransactionQuickPay Maven / Gradle / Ivy

Go to download

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.io.Serializable;

public class TransactionQuickPay implements Serializable {
    TransactionQuickPayItem ItemObject;
    Error ErrorObject;
    private String code;


    // Getter Methods

    public TransactionQuickPayItem getItem() {
        return ItemObject;
    }

    public Error getError() {
        return ErrorObject;
    }

    public String getCode() {
        return code;
    }

    // Setter Methods

    public void setItem(TransactionQuickPayItem 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