/* 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 { GetAllActivities200ResponseLinks } from './get-all-activities200-response-links'; // May contain unused imports in some cases // @ts-ignore import { GetContactById200Response } from './get-contact-by-id200-response'; /** * Use this endpoint to retrieve (GET) a collection of existing contacts, or to create (POST) a new contact. * @export * @interface Contacts */ export interface Contacts { /** * * @type {Array} * @memberof Contacts */ 'contacts'?: Array; /** * Total number of contacts in the response. * @type {number} * @memberof Contacts */ 'contacts_count'?: number; /** * * @type {GetAllActivities200ResponseLinks} * @memberof Contacts */ '_links'?: GetAllActivities200ResponseLinks; /** * If you use the segment_id query parameter to filter results based on a segment, this property indicates that the V3 API accepted your request and is still processing it. * @type {string} * @memberof Contacts */ 'status'?: string; }