/**
 * 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 { ServiceInitialState } from './service-initial-state';
import { ServiceType } from './service-type';
/**
 *
 * @export
 * @interface BlueprintService
 */
export interface BlueprintService {
    /**
     * Indicates if the service will start automatically on operating system boot
     * @type {boolean}
     * @memberof BlueprintService
     */
    auto_start?: boolean;
    /**
     *
     * @type {ServiceInitialState}
     * @memberof BlueprintService
     */
    initial_state?: ServiceInitialState;
    /**
     *
     * @type {ServiceType}
     * @memberof BlueprintService
     */
    type: ServiceType;
    /**
     * The service version
     * @type {string}
     * @memberof BlueprintService
     */
    version: string;
}
