/* 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 SegmentDetail */ export interface SegmentDetail { /** * The segment\'s unique descriptive name. * @type {string} * @memberof SegmentDetail */ 'name'?: string; /** * The segment\'s contact selection criteria formatted as single-string escaped JSON. * @type {string} * @memberof SegmentDetail */ 'segment_criteria'?: string; /** * The system generated number that uniquely identifies the segment. * @type {number} * @memberof SegmentDetail */ 'segment_id'?: number; /** * The system generated date and time (ISO-8601) that the segment was created. * @type {string} * @memberof SegmentDetail */ 'created_at'?: string; /** * The system generated date and time (ISO-8601) that the segment\'s name or segment_criteria was last updated. * @type {string} * @memberof SegmentDetail */ 'edited_at'?: string; }