vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface RecordError

    Represents an error that occurred during a synchronous CRUD (createMetadata(), updateMetadata(), or deleteMetadata()) operation.

    interface RecordError {
        extendedErrorDetails: { extendedErrorCode: string } & Record<
            string,
            string
            | number
            | boolean,
        >;
        fields: string[];
        message: string;
        statusCode: string;
    }
    Index

    Properties

    extendedErrorDetails: { extendedErrorCode: string } & Record<
        string,
        string
        | number
        | boolean,
    >

    More details about the error, including an extended error code and extra error properties, when available. Reserved for future use. For a description of the ExtendedErrorDetails element, see “ExtendedErrorDetails” in the SOAP API Developer Guide.

    fields: string[]

    An array containing names of fields that affected the error condition.

    message: string

    The error message text.

    statusCode: string

    A status code corresponding to the error.