/* 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.
TRIAL: Provides limited product features for a non-billed account and the account has an expiration date.BRONZE: Billable plan that provides basic email and marketing tools.SILVER: Billable plan that provides all features available in the BRONZE plan, and adds some additional email campaign to features, such as contact segmentation and social media ads integration.GOLD: Billable plan that provides all available product features.billing_status defaults to Trial. Billing status values include: Trial - A non-paying trial client account (default value).Open - An active and paying client account.Canceled - A canceled client account.Trial End - The trial period has ended for this client account.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;
}