Bitbucket Data Center API Client
    Preparing search index...

    Interface BitbucketDiffHunk

    A hunk (contiguous changed region) within a file diff

    interface BitbucketDiffHunk {
        destinationLine: number;
        destinationSpan: number;
        segments: BitbucketDiffSegment[];
        sourceLine: number;
        sourceSpan: number;
        truncated: boolean;
    }
    Index

    Properties

    destinationLine: number
    destinationSpan: number
    sourceLine: number
    sourceSpan: number
    truncated: boolean