Skip to main content

GetCommitResponse Properties

An object defining properties for the GetCommitResponse class.

SecretKey

Gets the encrypted secret key used for secure operations.

Type: string

The SecretKey property holds the encrypted security key and is marked with the [EncryptData("DecryptedSecret")] attribute, indicating that its value is encrypted using the DecryptedSecret property.


TokenId

Gets the token identifier used for security purposes.

Type: string

The TokenId property contains a security token identifier used for authentication and encryption purposes. This property is marked with the [Ignored] attribute, indicating it should be excluded from certain operations.


DecryptedSecret

Gets a new instance of DMObjectVersionSecret containing the decrypted security information.

Type: DMObjectVersionSecret

The DecryptedSecret property creates and returns a new DMObjectVersionSecret instance using the version, object, and commit information. This property is marked with the [Ignored] attribute and is used internally for encryption/decryption operations.


VersionId

Gets the unique identifier of the document version.

Type: long

The VersionId property represents the unique identifier for the specific version of the document. This property is marked with the [Ignored] attribute, indicating it should be excluded from certain operations.


Message

Gets the commit message associated with this version.

Type: string

The Message property contains the descriptive text that was provided when this commit was created, explaining the purpose or content of the changes.


CreatedAt

Gets the date and time when the commit was created.

Type: DateTimeOffset

The CreatedAt property represents the exact date and time when this commit was created, stored as a DateTimeOffset to preserve timezone information.


CreatedBy

Gets information about the user who created the commit.

Type: ClientUserInfo

The CreatedBy property contains detailed information about the user who created this commit, represented by a ClientUserInfo object.


ObjectId

Gets the unique identifier of the document object.

Type: long

The ObjectId property represents the unique identifier for the document object associated with this commit.


IsUploaded

Gets a value indicating whether the commit has been successfully uploaded.

Type: bool

The IsUploaded property indicates whether the commit and its associated content have been successfully uploaded to the system.


CommitId

Gets the unique identifier of the commit.

Type: long

The CommitId property represents the unique identifier for this specific commit in the document version history.