UNPKG

ch-admin-api-client-typescript

Version:
68 lines 1.58 kB
/** * CloudHospital Admin Api * CloudHospital application with Swagger, Swashbuckle, and API versioning. * * The version of the OpenAPI document: 1 * Contact: developer@icloudhospital.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 { WebAppEnvironmentModel } from './web-app-environment-model'; /** * * @export * @interface CreateWebAppCommand */ export interface CreateWebAppCommand { /** * * @type {string} * @memberof CreateWebAppCommand */ 'hospitalId'?: string; /** * * @type {string} * @memberof CreateWebAppCommand */ 'appName'?: string | null; /** * * @type {string} * @memberof CreateWebAppCommand */ 'hostName'?: string | null; /** * * @type {string} * @memberof CreateWebAppCommand */ 'clientName'?: string | null; /** * * @type {string} * @memberof CreateWebAppCommand */ 'region'?: string | null; /** * * @type {boolean} * @memberof CreateWebAppCommand */ 'useCustomDomainRedirectionFromWww'?: boolean | null; /** * * @type {boolean} * @memberof CreateWebAppCommand */ 'customDomainWithWww'?: boolean | null; /** * * @type {Array<WebAppEnvironmentModel>} * @memberof CreateWebAppCommand */ 'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null; } //# sourceMappingURL=create-web-app-command.d.ts.map