Atex.IdentityResolver.Identity (atex v0.3.0)

View Source

Summary

Types

The controlling DID for an identity.

The resolved DID document for an identity.

The human-readable handle for an identity. Can be missing.

t()

Types

did()

@type did() :: String.t()

The controlling DID for an identity.

document()

@type document() :: Atex.IdentityResolver.DIDDocument.t()

The resolved DID document for an identity.

handle()

@type handle() :: String.t() | nil

The human-readable handle for an identity. Can be missing.

t()

@type t() :: %Atex.IdentityResolver.Identity{
  did: did(),
  document: document(),
  handle: handle() | nil
}

Functions

new(did, handle, document)

@spec new(did(), handle(), document()) :: t()