/** * 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. */ export declare class ListRetrieveResponseObjectResourceAttributes { /** * 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'?: ListRetrieveResponseObjectResourceAttributes.OptInProcessEnum | 'double_opt_in' | 'single_opt_in' | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace ListRetrieveResponseObjectResourceAttributes { enum OptInProcessEnum { DoubleOptIn, SingleOptIn } }