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

Configuration for adding a trusted timestamp to a digital signature. When configured, the signature will include a timestamp from a Time Stamp Authority (TSA), enabling PAdES-T (PDF Advanced Electronic Signatures with Timestamp) compliance.

from nutrient_sdk import TimestampConfiguration

Construction

TimestampConfiguration()

Creates a new TimestampConfiguration instance with default settings.

Properties

password

@property
def password(self) -> str
@password.setter
def password(self, value: str) -> None

The password for authentication with the TSA server, if required.

Type: str


server_url

@property
def server_url(self) -> str
@server_url.setter
def server_url(self, value: str) -> None

The URL of the Time Stamp Authority (TSA) server.

Type: str


username

@property
def username(self) -> str
@username.setter
def username(self, value: str) -> None

The username for authentication with the TSA server, if required.

Type: str