Skip to content

RedactionKeyword

Bases: BaseModel

A class that represents a keyword to redact from the drawing.

PARAMETER DESCRIPTION
keyword

The keyword to redact from the drawing.

TYPE: str

Source code in werk24/models/v2/models.py
class RedactionKeyword(BaseModel):
    """
    A class that represents a keyword to redact from the drawing.
    """

    keyword: str = Field(..., description="The keyword to redact from the drawing.")