/** * 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 social channel object. */ export class SocialSocialInner { /** * The identifier for the social content channel. Read the following section for information on each channel. | Channel | id | | -------------- |--------------- | | Twitter | `\"social\"` | | Facebook | `\"social_long\"` | */ 'id'?: SocialSocialInner.IdEnum; /** * The social content body. */ 'body'?: string; /** * The social message content type. */ 'type'?: SocialSocialInner.TypeEnum; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "id", "baseName": "id", "type": "SocialSocialInner.IdEnum" }, { "name": "body", "baseName": "body", "type": "string" }, { "name": "type", "baseName": "type", "type": "SocialSocialInner.TypeEnum" } ]; static getAttributeTypeMap() { return SocialSocialInner.attributeTypeMap; } } export namespace SocialSocialInner { export enum IdEnum { Social = 'social', SocialLong = 'social_long' } export enum TypeEnum { Plain = 'text/plain', Html = 'text/html' } }