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

ee.carlrobert.llm.client.codegpt.PricingPlan Maven / Gradle / Ivy

There is a newer version: 0.8.28
Show newest version
package ee.carlrobert.llm.client.codegpt;

public enum PricingPlan {
  ANONYMOUS("Anonymous"), FREE("Free"), INDIVIDUAL("Individual");

  private final String label;

  PricingPlan(String label) {
    this.label = label;
  }

  public String getLabel() {
    return label;
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy