/** * 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 MetricPropertyResponseObjectResourceAttributes { /** * The label for this metric property */ 'label': string; /** * The property for this metric property */ 'property': string; /** * Inferred type for this metric property */ 'inferredType': string; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "label", "baseName": "label", "type": "string" }, { "name": "property", "baseName": "property", "type": "string" }, { "name": "inferredType", "baseName": "inferred_type", "type": "string" } ]; static getAttributeTypeMap() { return MetricPropertyResponseObjectResourceAttributes.attributeTypeMap; } }