import { StatusEnum } from './deployment/StatusEnum';
/** A website deployment */
export interface Deployment {
    /** Date of the deployment */
    date: string;
    /** Deployment numeric identifier */
    id: number;
    /** Whether a reset was requested before deploying */
    reset: boolean;
    /** Source which triggered the deployment */
    source: string;
    /** Current status of the deployment */
    status: StatusEnum;
    /** Which branch of the repository is deployed */
    vcsBranch: string;
    /** Identifier of the last commit after deployment */
    vcsCommitId?: string;
    /** Message of the last commit after deployment */
    vcsCommitMessage?: string;
    /** Website numeric identifier */
    websiteId: number;
}
//# sourceMappingURL=Deployment.d.ts.map