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 TimestampConfigurationConstruction
TimestampConfiguration()Creates a new TimestampConfiguration instance with default settings.
Properties
password
@propertydef password(self) -> str
@password.setterdef password(self, value: str) -> NoneThe password for authentication with the TSA server, if required.
Type: str
server_url
@propertydef server_url(self) -> str
@server_url.setterdef server_url(self, value: str) -> NoneThe URL of the Time Stamp Authority (TSA) server.
Type: str
username
@propertydef username(self) -> str
@username.setterdef username(self, value: str) -> NoneThe username for authentication with the TSA server, if required.
Type: str