DidDocumentMetadata

open class DidDocumentMetadata(var created: String? = null, var updated: String? = null, var deactivated: Boolean? = null, var versionId: String? = null, var nextUpdate: String? = null, var nextVersionId: String? = null, var equivalentId: String? = null, var canonicalId: String? = null)

Contains metadata about the DID document. DID document metadata spec: https://www.w3.org/TR/did-core/#did-document-metadata

Inheritors

Constructors

Link copied to clipboard
constructor(created: String? = null, updated: String? = null, deactivated: Boolean? = null, versionId: String? = null, nextUpdate: String? = null, nextVersionId: String? = null, equivalentId: String? = null, canonicalId: String? = null)

Properties

Link copied to clipboard

The canonical ID of the DID as per method-specific rules.

Link copied to clipboard

Timestamp of when the DID was created.

Link copied to clipboard

Indicates whether the DID has been deactivated. true if deactivated, false otherwise.

Link copied to clipboard

Alternative ID that can be used interchangeably with the canonical DID.

Link copied to clipboard

Timestamp of the next expected update of the DID document.

Link copied to clipboard

The version ID expected for the next version of the DID document.

Link copied to clipboard

Timestamp of the last time the DID was updated.

Link copied to clipboard

Specific version of the DID document.