Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketErrorDetail

    A single error entry from a Bitbucket error response body: { errors: [{ context, message, exceptionName }] }.

    interface BitbucketErrorDetail {
        context: string | null;
        exceptionName?: string;
        message: string;
    }
    Index

    Properties

    context: string | null
    exceptionName?: string
    message: string