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

com.sigopt.model.Paging Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.sigopt.model;

public class Paging extends StructObject {
    public Paging() {
        super();
    }

    public Paging(String before, String after) {
        super();
        this.set("before", before);
        this.set("after", after);
    }

    public String getBefore() {
        return (String) this.get("before");
    }

    public String getAfter() {
        return (String) this.get("after");
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy