/** * Klaviyo API * The Klaviyo REST API. Please visit https://developers.klaviyo.com for more details. * * Contact: developers@klaviyo.com * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import { RequestFile } from './models'; export class ListListResponseObjectResourceAttributes { /** * A helpful name to label the list */ 'name'?: string | null; /** * Date and time when the list was created, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm) */ 'created'?: Date | null; /** * Date and time when the list was last updated, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm) */ 'updated'?: Date | null; /** * The opt-in process for this list. Valid values: \'double_opt_in\', \'single_opt_in\'. */ 'optInProcess'?: ListListResponseObjectResourceAttributes.OptInProcessEnum | 'double_opt_in' | 'single_opt_in' | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "created", "baseName": "created", "type": "Date" }, { "name": "updated", "baseName": "updated", "type": "Date" }, { "name": "optInProcess", "baseName": "opt_in_process", "type": "ListListResponseObjectResourceAttributes.OptInProcessEnum" } ]; static getAttributeTypeMap() { return ListListResponseObjectResourceAttributes.attributeTypeMap; } } export namespace ListListResponseObjectResourceAttributes { export enum OptInProcessEnum { DoubleOptIn = 'double_opt_in', SingleOptIn = 'single_opt_in' } }