/**
 * 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 { ServerBlueprintSpec } from './server-blueprint-spec';
/**
 * Blueprint for creating a server
 * @export
 * @interface ServerBlueprint
 */
export interface ServerBlueprint {
    /**
     * The unique id of the blueprint
     * @type {number}
     * @memberof ServerBlueprint
     */
    id?: number;
    /**
     * Name of the blueprint
     * @type {string}
     * @memberof ServerBlueprint
     */
    name?: string;
    /**
     * The blueprint type
     * @type {string}
     * @memberof ServerBlueprint
     */
    type?: string;
    /**
     *
     * @type {ServerBlueprintSpec}
     * @memberof ServerBlueprint
     */
    spec?: ServerBlueprintSpec;
    /**
     * The date and time when the record was created
     * @type {string}
     * @memberof ServerBlueprint
     */
    created_at?: string;
    /**
     * The date and time when the record was last updated
     * @type {string}
     * @memberof ServerBlueprint
     */
    updated_at?: string;
}
