/* 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. */ // May contain unused imports in some cases // @ts-ignore import { PlanTiersObjectCurrentTiersInner } from './plan-tiers-object-current-tiers-inner'; /** * Specifies client billing plan details including the type of plan, the plan tiers used, the current billing status, and the day of the month that the client is billed. When a client account is first provisioned, the `plan_type` defaults to a `Trial` account. After you change an account `billing_status` from `Trial` to any other `billing_status`, you cannot change it back to a `Trial` account. * @export * @interface PlanTiersObject */ export interface PlanTiersObject { /** * The billing plan that is associated with a client\'s Constant Contact account. The billing plan determines which Constant Contact product features that the client account can access. If you are not on the latest billing plan, contact the Constant Contact Partner Team. However, older billing plans and plan_type enum values will continue to be supported. * @type {string} * @memberof PlanTiersObject */ 'plan_type'?: string; /** * Lists the billing plan tiers that are currently associated with a client account. * @type {Array} * @memberof PlanTiersObject */ 'current_tiers'?: Array; /** * The client\'s account billing status. When you first create a client account the billing_status defaults to Trial. Billing status values include: * @type {string} * @memberof PlanTiersObject */ 'billing_status'?: string; /** * This property is required when an account is not set up to use single billing. For trial accounts, the value is initially set to null. The value can only be changed when changing the plan_type from a trial account to a different type of plan, otherwise the value you enter is ignored. You can choose to enter a specific day of month or except the default value, which is the day that the plan_type value changes from a trial account plan to a different plan. Valid billing_day_of_month values include 1 through and including 31. * @type {number} * @memberof PlanTiersObject */ 'billing_day_of_month'?: number; }