/* 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.
*/
/**
* Specifies the type of billing plan and the billing date to use for a client account.
* @export
* @interface PlanInfo
*/
export interface PlanInfo {
/**
* Use this property to update the client account billing plan to a different billing plan. After changing the plan_type from TRIAL to any other billing plan type, you cannot change it back to TRIAL.
TRIAL: A non-billable account with an expiration date that allows clients to try Constant Contact product features.GOLD: A billable client account plan.SILVER: A billable client account plan.BRONZE: A billable client account plan.plan_type value changes from a TRIAL plan to a different plan_type. For trial accounts, the value defaults to null. You can only change the billing_day_of_month when changing the plan_type value from TRIAL to a different plan_type, otherwise the value you enter is ignored.
* @type {number}
* @memberof PlanInfo
*/
'billing_day_of_month'?: number;
}