/* 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. */ /** * * @export * @interface AccountSuspension */ export interface AccountSuspension { /** * Suspended plan group id. * @type {number} * @memberof AccountSuspension */ 'suspend_plan_id': number; /** * The suspended plan group id. * @type {number} * @memberof AccountSuspension */ 'suspend_plan_group_id': number; /** * The date when the customer will start being suspended. If omitted defaults to the current date and time and suspends the account at the next billing cycle. * @type {string} * @memberof AccountSuspension */ 'suspend_date'?: string; /** * The reason the customer is suspended. * @type {number} * @memberof AccountSuspension */ 'suspend_reason_id'?: number; /** * The subreason why the customer is suspended. * @type {number} * @memberof AccountSuspension */ 'suspend_subreason_id'?: number; /** * Comment field for user suspension. * @type {string} * @memberof AccountSuspension */ 'suspend_comment'?: string; /** * Estimated date when the customer will be reactivated. * @type {string} * @memberof AccountSuspension */ 'suspend_estimated_reactivation_date'?: string; }