/** * 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'; import { GetTemplates200ResponseMessagetemplatesInner } from './getTemplates200ResponseMessagetemplatesInner'; /** * Returns a list of templates */ export class GetTemplates200Response { /** * Provides the total number of records fetched. This attribute may return \"No records found\" when there are no message templates available. */ 'status': string; /** * Specifies the name of the message template */ 'messagetemplates': Set; /** * Provides a list of URLs that can be used to manipulate or access the message template. This following attribute may return an empty array. */ 'link': Array; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "status", "baseName": "status", "type": "string" }, { "name": "messagetemplates", "baseName": "messagetemplates", "type": "Set" }, { "name": "link", "baseName": "link", "type": "Array" } ]; static getAttributeTypeMap() { return GetTemplates200Response.attributeTypeMap; } }