/**
 * 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