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

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

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

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

    public String getId() {
        return (String) this.get("id");
    }

    public String getName() {
        return (String) this.get("name");
    }

    public PlanRules getPlanRules() {
        return Utils.mergeInto(new PlanRules(), this.get("rules"));
    }

    public PlanPeriod getCurrentPeriod() {
        return Utils.mergeInto(new PlanPeriod(), this.get("current_period"));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy