/* 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 CreateSegmentRequest
*/
export interface CreateSegmentRequest {
/**
* The segment\'s unique descriptive name.
* @type {string}
* @memberof CreateSegmentRequest
*/
'name': string;
/**
* The segment_criteria specifies the contact data that Constant Contact uses to evaluate and identify contacts that meet your criteria. The segment_criteria must be formatted as single-string escaped JSON. The top-level group type must be add.
* @type {string}
* @memberof CreateSegmentRequest
*/
'segment_criteria': string;
}