/** * 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 { ErrorSource } from './errorSource'; export declare class APIJobErrorPayload { /** * Unique identifier for the error. */ 'id': string; /** * 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; static attributeTypeMap: Array<{ name: string; baseName: string; type: string; }>; static getAttributeTypeMap(): { name: string; baseName: string; type: string; }[]; }