/** * 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 details about this particular message sender/responder */ export class CallbackInstanceFrom { /** * The name of the sender of this message */ 'name'?: string; /** * The unique identifier for this contact within Whispir */ 'mri'?: string; /** * The mobile phone number associated with this sender */ 'mobile'?: string; /** * The phone number associated with the voice channel for this sender */ 'voice'?: string; /** * The email address associated with the email channel for this sender */ 'email'?: string; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "name", "baseName": "name", "type": "string" }, { "name": "mri", "baseName": "mri", "type": "string" }, { "name": "mobile", "baseName": "mobile", "type": "string" }, { "name": "voice", "baseName": "voice", "type": "string" }, { "name": "email", "baseName": "email", "type": "string" } ]; static getAttributeTypeMap() { return CallbackInstanceFrom.attributeTypeMap; } }