/* tslint:disable */ /* eslint-disable */ /** * Constant Contact API v3 * Swagger build version 3.0.2475 * * The version of the OpenAPI document: 1.0.116 * Contact: webservices@constantcontact.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The usage tier that is associated with a client\'s Constant Contact account and is used to calculate the monthly billing price. * @export * @interface PlanTiersObjectCurrentTiersInner */ export interface PlanTiersObjectCurrentTiersInner { /** * Identifies the tier usage type that is associated with the billing plan. * @type {string} * @memberof PlanTiersObjectCurrentTiersInner */ 'usage_type'?: string; /** * The number of active contacts (default) used within the current tier. * @type {number} * @memberof PlanTiersObjectCurrentTiersInner */ 'current_usage'?: number; /** * The billing tier level that is associated with a client account. By default, the system determines the tier level to use based on the number of active contacts currently in the client account at the time of billing. Billing tiers may differ. The following shows an example billing tier: * @type {number} * @memberof PlanTiersObjectCurrentTiersInner */ 'tier'?: number; /** * The minimum number of active contacts for the tier level. * @type {number} * @memberof PlanTiersObjectCurrentTiersInner */ 'tier_min'?: number; /** * The maximum number of active contacts for the tier level. * @type {number} * @memberof PlanTiersObjectCurrentTiersInner */ 'tier_max'?: number; /** * The billing price set for the tier used to bill the client account each month. * @type {number} * @memberof PlanTiersObjectCurrentTiersInner */ 'price'?: number; /** * The currency (ISO currency code) used to price the tier for a client account. * @type {string} * @memberof PlanTiersObjectCurrentTiersInner */ 'currency_code'?: string; }