/* 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 { CreateImportJSONActivityRequestImportDataInner } from './create-import-jsonactivity-request-import-data-inner'; /** * * @export * @interface CreateImportJSONActivityRequest */ export interface CreateImportJSONActivityRequest { /** * An array containing the contacts to import. * @type {Array} * @memberof CreateImportJSONActivityRequest */ 'import_data': Array; /** * Specify which contact lists you are adding all imported contacts to as an array of up to 50 contact list_id string values. * @type {Array} * @memberof CreateImportJSONActivityRequest */ 'list_ids': Array; /** * Specifies if the contact gave explicit SMS permission or if the SMS permission was not set (not_set). If `explicit, the sms_consent_date must be provided. * @type {string} * @memberof CreateImportJSONActivityRequest */ 'sms_permission_to_send'?: string; }