/** * 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 { ProfileLocation } from './profileLocation'; export declare class ProfileResponseObjectResourceAttributes { /** * Individual\'s email address */ 'email'?: string | null; /** * Individual\'s phone number in E.164 format */ 'phoneNumber'?: string | null; /** * A unique identifier used by customers to associate Klaviyo profiles with profiles in an external system, such as a point-of-sale system. Format varies based on the external system. */ 'externalId'?: string | null; /** * Individual\'s first name */ 'firstName'?: string | null; /** * Individual\'s last name */ 'lastName'?: string | null; /** * Name of the company or organization within the company for whom the individual works */ 'organization'?: string | null; /** * The locale of the profile, in the IETF BCP 47 language tag format like (ISO 639-1/2)-(ISO 3166 alpha-2) */ 'locale'?: string | null; /** * Individual\'s job title */ 'title'?: string | null; /** * URL pointing to the location of a profile image */ 'image'?: string | null; /** * Date and time when the profile was created, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm) */ 'created'?: Date | null; /** * Date and time when the profile was last updated, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm) */ 'updated'?: Date | null; /** * Date and time of the most recent event the triggered an update to the profile, in ISO 8601 format (YYYY-MM-DDTHH:MM:SS.mmmmmm) */ 'lastEventDate'?: Date | null; 'location'?: ProfileLocation; /** * An object containing key/value pairs for any custom properties assigned to this profile */ 'properties'?: object | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }