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

com.github.revenuemonster.model.Expiry 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;

public class Expiry {
    private String type;
    private float day;
    private String expiredAt;


    // Getter Methods

    public String getType() {
        return type;
    }

    public float getDay() {
        return day;
    }

    public String getExpiredAt() {
        return expiredAt;
    }

    // Setter Methods

    public void setType(String type) {
        this.type = type;
    }

    public void setDay(float day) {
        this.day = day;
    }

    public void setExpiredAt(String expiredAt) {
        this.expiredAt = expiredAt;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy