Package web5.sdk.dids
Class DocumentMetadata
-
- All Implemented Interfaces:
public final class DocumentMetadataMetadata associated with a DID document.
DocumentMetadatacontains information about the DID document, including creation and update timestamps, versioning, and any potential deactivation status.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringcreatedprivate final Stringupdatedprivate final Booleandeactivatedprivate final StringnextUpdateprivate final StringversionIdprivate final StringnextVersionIdprivate final List<String>equivalentIdprivate final StringcanonicalId
-
Method Summary
Modifier and Type Method Description final StringgetCreated()The timestamp when the DID document was created (optional). final StringgetUpdated()The timestamp when the DID document was last updated (optional). final BooleangetDeactivated()Indicates whether the DID document has been deactivated (optional). final StringgetNextUpdate()The timestamp for the next expected update to the DID document (optional). final StringgetVersionId()The version identifier of the current DID document (optional). final StringgetNextVersionId()The version identifier of the next expected version of the DID document (optional). final List<String>getEquivalentId()A list of equivalent identifiers for the DID document (optional). final StringgetCanonicalId()The canonical ID for the DID document, if applicable (optional). -
-
Method Detail
-
getCreated
final String getCreated()
The timestamp when the DID document was created (optional).
-
getUpdated
final String getUpdated()
The timestamp when the DID document was last updated (optional).
-
getDeactivated
final Boolean getDeactivated()
Indicates whether the DID document has been deactivated (optional).
-
getNextUpdate
final String getNextUpdate()
The timestamp for the next expected update to the DID document (optional).
-
getVersionId
final String getVersionId()
The version identifier of the current DID document (optional).
-
getNextVersionId
final String getNextVersionId()
The version identifier of the next expected version of the DID document (optional).
-
getEquivalentId
final List<String> getEquivalentId()
A list of equivalent identifiers for the DID document (optional).
-
getCanonicalId
final String getCanonicalId()
The canonical ID for the DID document, if applicable (optional).
-
-
-
-