/**
 * devopness API
 * Devopness API - Painless essential DevOps to everyone
 *
 * The version of the OpenAPI document: latest
 *
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
import { EnvironmentType } from './environment-type';
/**
 *
 * @export
 * @interface EnvironmentUpdate
 */
export interface EnvironmentUpdate {
    /**
     * The unique ID of the given Environment.
     * @type {number}
     * @memberof EnvironmentUpdate
     */
    id: number;
    /**
     *
     * @type {EnvironmentType}
     * @memberof EnvironmentUpdate
     */
    type: EnvironmentType;
    /**
     * The environment\'s name. Must not be greater than 60 characters.
     * @type {string}
     * @memberof EnvironmentUpdate
     */
    name: string;
    /**
     * The environment\'s description. Must not be greater than 255 characters.
     * @type {string}
     * @memberof EnvironmentUpdate
     */
    description?: string;
}
