com.recurly.v3.resources.Tier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api-client Show documentation
Show all versions of api-client Show documentation
The official Java client for Recurly's V3 API.
/**
* This file is automatically created by Recurly's OpenAPI generation process and thus any edits you
* make by hand will be lost. If you wish to make a change to this file, please create a Github
* issue explaining the changes you need and we will usher them to the appropriate places.
*/
package com.recurly.v3.resources;
import com.google.gson.annotations.Expose;
import com.google.gson.annotations.SerializedName;
import com.recurly.v3.Resource;
import java.util.List;
public class Tier extends Resource {
/** Tier pricing */
@SerializedName("currencies")
@Expose
private List currencies;
/**
* Ending quantity for the tier. This represents a unit amount for unit-priced add ons. Must be
* left empty if it is the final tier.
*/
@SerializedName("ending_quantity")
@Expose
private Integer endingQuantity;
/** (deprecated) -- Use the percentage_tiers object instead. */
@SerializedName("usage_percentage")
@Expose
private String usagePercentage;
/** Tier pricing */
public List getCurrencies() {
return this.currencies;
}
/** @param currencies Tier pricing */
public void setCurrencies(final List currencies) {
this.currencies = currencies;
}
/**
* Ending quantity for the tier. This represents a unit amount for unit-priced add ons. Must be
* left empty if it is the final tier.
*/
public Integer getEndingQuantity() {
return this.endingQuantity;
}
/**
* @param endingQuantity Ending quantity for the tier. This represents a unit amount for
* unit-priced add ons. Must be left empty if it is the final tier.
*/
public void setEndingQuantity(final Integer endingQuantity) {
this.endingQuantity = endingQuantity;
}
/** (deprecated) -- Use the percentage_tiers object instead. */
public String getUsagePercentage() {
return this.usagePercentage;
}
/** @param usagePercentage (deprecated) -- Use the percentage_tiers object instead. */
public void setUsagePercentage(final String usagePercentage) {
this.usagePercentage = usagePercentage;
}
}