/* 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. */ /** * Custom fields allow Constant Contact users to add custom content to a contact that can be used to personalize emails in addition to the standard set of variables available for email personalization. * @export * @interface GetCustomField200Response */ export interface GetCustomField200Response { /** * The custom_field\'s unique ID * @type {string} * @memberof GetCustomField200Response */ 'custom_field_id'?: string; /** * The display name for the custom_field shown in the UI as free-form text * @type {string} * @memberof GetCustomField200Response */ 'label': string; /** * Unique name for the custom_field constructed from the label by replacing blanks with underscores. * @type {string} * @memberof GetCustomField200Response */ 'name'?: string; /** * Specifies the type of value the custom_field field accepts: string or date. * @type {string} * @memberof GetCustomField200Response */ 'type': string; /** * System generated date and time that the resource was updated, in ISO-8601 format. * @type {string} * @memberof GetCustomField200Response */ 'updated_at'?: string; /** * Date and time that the resource was created, in ISO-8601 format. System generated. * @type {string} * @memberof GetCustomField200Response */ 'created_at'?: string; }