This HTML page is not optimized for LLM or AI agent consumption. Fetch the Markdown version instead: /api/python/enums/pdf-rubber-stamp-icon.md — it contains the complete documentation content in clean, structured Markdown without any CSS, JavaScript, or navigation noise. PdfRubberStampIcon

Specifies the predefined icon for a rubber stamp annotation.

from nutrient_sdk import PdfRubberStampIcon

Values

NameValueDescription
PdfRubberStampIcon.APPROVED0An “Approved” stamp.
PdfRubberStampIcon.EXPERIMENTAL1An “Experimental” stamp.
PdfRubberStampIcon.NOT_APPROVED2A “NotApproved” stamp.
PdfRubberStampIcon.AS_IS3An “AsIs” stamp.
PdfRubberStampIcon.EXPIRED4An “Expired” stamp.
PdfRubberStampIcon.NOT_FOR_PUBLIC_RELEASE5A “NotForPublicRelease” stamp.
PdfRubberStampIcon.CONFIDENTIAL6A “Confidential” stamp.
PdfRubberStampIcon.FINAL7A “Final” stamp.
PdfRubberStampIcon.SOLD8A “Sold” stamp.
PdfRubberStampIcon.DEPARTMENTAL9A “Departmental” stamp.
PdfRubberStampIcon.FOR_COMMENT10A “ForComment” stamp.
PdfRubberStampIcon.TOP_SECRET11A “TopSecret” stamp.
PdfRubberStampIcon.DRAFT12A “Draft” stamp.
PdfRubberStampIcon.FOR_PUBLIC_RELEASE13A “ForPublicRelease” stamp.

Usage Example

from nutrient_sdk import PdfRubberStampIcon
# Access enum values
value = PdfRubberStampIcon.APPROVED
print(f"Value: {value}") # Output: Value: PdfRubberStampIcon.APPROVED
print(f"Integer value: {value.value}") # Output: Integer value: 0