ch-admin-api-client-typescript
Version:
Openapi generated typescript-axios client for CloudHospital admin
69 lines • 1.64 kB
TypeScript
/**
* 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 { DeployStatus } from './deploy-status';
import { WebAppEnvironmentModel } from './web-app-environment-model';
/**
*
* @export
* @interface UpdateWebAppCommand
*/
export interface UpdateWebAppCommand {
/**
*
* @type {string}
* @memberof UpdateWebAppCommand
*/
'appName'?: string | null;
/**
*
* @type {string}
* @memberof UpdateWebAppCommand
*/
'hostName'?: string | null;
/**
*
* @type {number}
* @memberof UpdateWebAppCommand
*/
'clientId'?: number | null;
/**
*
* @type {Array<WebAppEnvironmentModel>}
* @memberof UpdateWebAppCommand
*/
'webAppEnvironments'?: Array<WebAppEnvironmentModel> | null;
/**
*
* @type {DeployStatus}
* @memberof UpdateWebAppCommand
*/
'deployStatus'?: DeployStatus;
/**
*
* @type {string}
* @memberof UpdateWebAppCommand
*/
'region'?: string | null;
/**
*
* @type {boolean}
* @memberof UpdateWebAppCommand
*/
'useCustomDomainRedirectionFromWww'?: boolean | null;
/**
*
* @type {boolean}
* @memberof UpdateWebAppCommand
*/
'customDomainWithWww'?: boolean | null;
}
//# sourceMappingURL=update-web-app-command.d.ts.map