vlocode-project - v1.41.2
    Preparing search index...

    Interface DeployResult

    Contains information about the success or failure of the associated deploy() call.

    The asynchronous metadata call checkDeployStatus() returns a DeployResult object.

    interface DeployResult {
        canceledBy: string | null;
        canceledByName: string | null;
        checkOnly: boolean;
        completedDate: string | null;
        createdBy: string | null;
        createdByName: string | null;
        createdDate: string | null;
        details: DeployResultDetails | null;
        done: boolean;
        errorMessage: string | null;
        errorStatusCode: string | null;
        id: string;
        ignoreWarnings: boolean;
        lastModifiedDate: string | null;
        numberComponentErrors: number | null;
        numberComponentsDeployed: number | null;
        numberComponentsTotal: number | null;
        numberTestErrors: number | null;
        numberTestsCompleted: number | null;
        numberTestsTotal: number | null;
        retrieveResult: RetrieveResult;
        rollbackOnError: boolean;
        runTestResult: string | null;
        runTestsEnabled: boolean;
        startDate: string | null;
        stateDetail: string | null;
        status: DeployStatus;
        success: boolean;
    }
    Index

    Properties

    canceledBy: string | null
    canceledByName: string | null
    checkOnly: boolean
    completedDate: string | null
    createdBy: string | null
    createdByName: string | null
    createdDate: string | null
    details: DeployResultDetails | null
    done: boolean
    errorMessage: string | null
    errorStatusCode: string | null
    id: string
    ignoreWarnings: boolean
    lastModifiedDate: string | null
    numberComponentErrors: number | null
    numberComponentsDeployed: number | null
    numberComponentsTotal: number | null
    numberTestErrors: number | null
    numberTestsCompleted: number | null
    numberTestsTotal: number | null
    retrieveResult: RetrieveResult
    rollbackOnError: boolean
    runTestResult: string | null
    runTestsEnabled: boolean
    startDate: string | null
    stateDetail: string | null
    status: DeployStatus
    success: boolean