/** * 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'; import { ErrorSource } from './errorSource'; export class ImportErrorResponseObjectResourceAttributes { /** * A code for classifying the error type. */ 'code': string; /** * A high-level message about the error. */ 'title': string; /** * Specific details about the error. */ 'detail': string; 'source': ErrorSource; 'originalPayload'?: object | null; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "code", "baseName": "code", "type": "string" }, { "name": "title", "baseName": "title", "type": "string" }, { "name": "detail", "baseName": "detail", "type": "string" }, { "name": "source", "baseName": "source", "type": "ErrorSource" }, { "name": "originalPayload", "baseName": "original_payload", "type": "object" } ]; static getAttributeTypeMap() { return ImportErrorResponseObjectResourceAttributes.attributeTypeMap; } }