Skip to main content
Version: 1.4.0

Plan

This class models the information of a plan.

public class Plan {
private String name;
private String description;
private Object monthlyPrice;
private Object annualPrice;
private String unit;
private Map<String, Feature> features;
private Map<String, UsageLimit> usageLimits;

// Getters and setters...
}