/** * 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 HATEOAS link object. */ export class LinkInner { /** * The Universal Resource Identifier for the related resource. */ 'uri': string; /** * The description of the related resource. */ 'rel': string; /** * The [REST](https://en.wikipedia.org/wiki/Representational_state_transfer) method required to request the related resource. */ 'method': string; /** * The host of the related resource. */ 'host': string; /** * The port of the related resource. */ 'port': LinkInner.PortEnum; static discriminator: string | undefined = undefined; static attributeTypeMap: Array<{name: string, baseName: string, type: string}> = [ { "name": "uri", "baseName": "uri", "type": "string" }, { "name": "rel", "baseName": "rel", "type": "string" }, { "name": "method", "baseName": "method", "type": "string" }, { "name": "host", "baseName": "host", "type": "string" }, { "name": "port", "baseName": "port", "type": "LinkInner.PortEnum" } ]; static getAttributeTypeMap() { return LinkInner.attributeTypeMap; } } export namespace LinkInner { export enum PortEnum { NUMBER_MINUS_1 = -1 } }