RejectedBuild

A build that has not been accepted for submission, usually due to a problem with the request data.

The object is comprised of the key of the rejected build and the corresponding error messages.

interface RejectedBuild {
    errors: ({
        errorTraceId?: string;
        message: string;
    } & {
        [key: string]: unknown;
    })[];
    key: BuildKey;
}

Hierarchy

  • Record<string, unknown>
    • RejectedBuild

Properties

Properties

errors: ({
    errorTraceId?: string;
    message: string;
} & {
    [key: string]: unknown;
})[]

The error messages for the rejected build

BuildKey

Fields that uniquely reference a build.