Represents the content to redact

interface ContentItem {
    entityId: string;
    entityType: "issuefieldvalue";
    id: string;
}

Properties

entityId: string

The ID of the content entity. For redacting a issue field, this will be field id. e.g. summary, customfield_10000.

summary
entityType

The type of the entity to redact

id: string

This would be the issue ID

10000