/** * 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 PredictiveAnalytics { /** * Total value of all historically placed orders */ 'historicClv'?: number | null; /** * Predicted value of all placed orders in the next 365 days */ 'predictedClv'?: number | null; /** * Sum of historic and predicted CLV */ 'totalClv'?: number | null; /** * Number of already placed orders */ 'historicNumberOfOrders'?: number | null; /** * Predicted number of placed orders in the next 365 days */ 'predictedNumberOfOrders'?: number | null; /** * Average number of days between orders (None if only one order has been placed) */ 'averageDaysBetweenOrders'?: number | null; /** * Average value of placed orders */ 'averageOrderValue'?: number | null; /** * Probability the customer has churned */ 'churnProbability'?: number | null; /** * Expected date of next order, as calculated at the time of their most recent order */ 'expectedDateOfNextOrder'?: Date | null; /** * List of channels ranked by their predicted effectiveness for this profile, with the best channel being listed first at index 0 */ 'rankedChannelAffinity'?: Array | Array<'email' | 'push' | 'sms' | 'whatsapp'> | null; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace PredictiveAnalytics { enum RankedChannelAffinityEnum { Email, Push, Sms, Whatsapp } }