RegularPeerDetails

data class RegularPeerDetails(val firstName: String?, val lastName: String?, val peerType: PeerType) : PeerDetails

Data class representing the details of a regular transaction peer.

Constructors

Link copied to clipboard
constructor(firstName: String?, lastName: String?, peerType: PeerType)

Properties

Link copied to clipboard
open override val firstName: String?

The first name of the peer.

Link copied to clipboard
open override val lastName: String?

The last name of the peer.

Link copied to clipboard
open override val peerType: PeerType

The type of a transaction peer.