/** * Whispir Platform API * Whispir Platform API for cross channel and multi channel communications. Documentation on each endpoint is available at https://developers.whispir.com. * * The version of the OpenAPI document: 1.0.0 * Contact: support@whispir.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'; /** * The unsupported media type response object. */ export class GetMessages415Response { /** * The summary of the error encountered. */ 'errorSummary'?: string; /** * The detailed description of the error encountered. */ 'errorText'?: string; /** * The additional details describing the error. */ 'errorDetail'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "errorSummary", "baseName": "errorSummary", "type": "string" }, { "name": "errorText", "baseName": "errorText", "type": "string" }, { "name": "errorDetail", "baseName": "errorDetail", "type": "string" } ]; static getAttributeTypeMap() { return GetMessages415Response.attributeTypeMap; } }