CreateAccountResponse

data class CreateAccountResponse(val accessJwt: String, val refreshJwt: String, val handle: Handle, val did: Did, val didDoc: JsonContent? = null)

Account login session returned on successful account creation.

Constructors

Link copied to clipboard
constructor(accessJwt: String, refreshJwt: String, handle: Handle, did: Did, didDoc: JsonContent? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val did: Did

The DID of the new account.

Link copied to clipboard
val didDoc: JsonContent? = null

Complete DID document.

Link copied to clipboard
Link copied to clipboard