/** * 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 EventResponseObjectResourceAttributes { /** * Event timestamp in seconds */ 'timestamp'?: number | null; /** * Event properties, can include identifiers and extra properties */ 'eventProperties'?: object | null; /** * Event timestamp in ISO8601 format (YYYY-MM-DDTHH:MM:SS+hh:mm) */ 'datetime'?: Date | null; /** * A unique identifier for the event, this can be used as a cursor in pagination */ 'uuid'?: string | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "timestamp", "baseName": "timestamp", "type": "number" }, { "name": "eventProperties", "baseName": "event_properties", "type": "object" }, { "name": "datetime", "baseName": "datetime", "type": "Date" }, { "name": "uuid", "baseName": "uuid", "type": "string" } ]; static getAttributeTypeMap() { return EventResponseObjectResourceAttributes.attributeTypeMap; } }