/**
 * 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 { ActionRelationShallow } from './action-relation-shallow';
/**
 * Latest deployment created to application and the more recent completed deployment
 * @export
 * @interface ApplicationLastDeployments
 */
export interface ApplicationLastDeployments {
    /**
     *
     * @type {ActionRelationShallow}
     * @memberof ApplicationLastDeployments
     */
    latest?: ActionRelationShallow | null;
    /**
     *
     * @type {ActionRelationShallow}
     * @memberof ApplicationLastDeployments
     */
    live?: ActionRelationShallow | null;
}
