Jira.js - Jira Cloud API library
    Preparing search index...

    Interface RedactionPosition

    Represents the position of the redaction

    interface RedactionPosition {
        adfPointer?: string;
        expectedText: string;
        from: number;
        to: number;
    }
    Index

    Properties

    adfPointer?: string

    The ADF pointer indicating the position of the text to be redacted. This is only required when redacting from rich text(ADF) fields. For plain text fields, this field can be omitted.

    expectedText: string

    The text which will be redacted, encoded using SHA256 hash and Base64 digest

    from: number

    The start index(inclusive) for the redaction in specified content

    to: number

    The ending index(exclusive) for the redaction in specified content