SigningUser

# SigningUser

Object representing the user in the platform.

data class SigningUser(identity: Identity, publicKey: ByteArray)

# Parameters

Name Summary
identity

Identity used for the authentication.

publicKey

Public part of the signing key.

# Constructors

Name Summary
SigningUser

Identity used for the authentication.

fun SigningUser(identity: Identity, publicKey: ByteArray)

# Types

Name Summary
Companion
Content
object Companion


# Functions

Name Summary
component1
Content
operator fun component1(): Identity


component2
Content
operator fun component2(): ByteArray


copy
Content
fun copy(identity: Identity, publicKey: ByteArray): SigningUser


equals
Content
open operator override fun equals(other: Any?): Boolean


hashCode
Content
open override fun hashCode(): Int


toString
Content
open override fun toString(): String


# Properties

Name Summary
identity

Identity used for the authentication.

val identity: Identity
publicKey

Public part of the signing key.

val publicKey: ByteArray