/** * 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 { MappedMetricEnum } from './mappedMetricEnum'; import { MappedMetricResponseObjectResourceAttributes } from './mappedMetricResponseObjectResourceAttributes'; import { MappedMetricResponseObjectResourceRelationships } from './mappedMetricResponseObjectResourceRelationships'; import { ObjectLinks } from './objectLinks'; export declare class PatchMappedMetricResponseData { 'type': MappedMetricEnum | 'mapped-metric'; /** * The type of mapping. */ 'id': PatchMappedMetricResponseData.IdEnum | 'added_to_cart' | 'cancelled_sales' | 'ordered_product' | 'refunded_sales' | 'revenue' | 'started_checkout' | 'viewed_product'; 'attributes': MappedMetricResponseObjectResourceAttributes; 'relationships'?: MappedMetricResponseObjectResourceRelationships; 'links': ObjectLinks; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; } export declare namespace PatchMappedMetricResponseData { enum IdEnum { AddedToCart, CancelledSales, OrderedProduct, RefundedSales, Revenue, StartedCheckout, ViewedProduct } }