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

com.github.revenuemonster.model.Meta 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 Meta {
    private float count;
    private String cursor;


    // Getter Methods

    public float getCount() {
        return count;
    }

    public String getCursor() {
        return cursor;
    }

    // Setter Methods

    public void setCount(float count) {
        this.count = count;
    }

    public void setCursor(String cursor) {
        this.cursor = cursor;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy