Package-level declarations

Types used by the methods of the Sudo Platform Decentralized Identity Relay SDK.

Types

Link copied to clipboard
data class ListOutput<T>(val items: List<T>, val nextToken: String?)

Representation of a generic type to wrap around a GraphQL list type. This is useful for exposing a list of items and nextToken to allow for pagination by calling for the next set of paginated results.

Link copied to clipboard
data class Message(val id: String, val createdAt: Date, val updatedAt: Date, val ownerId: String, val sudoId: String, val postboxId: String, val message: String)

The platform SDK representation of a relay message.

Link copied to clipboard
data class Postbox(val id: String, val createdAt: Date, val updatedAt: Date, val ownerId: String, val sudoId: String, val connectionId: String, val isEnabled: Boolean, val serviceEndpoint: String)

The platform SDK representation of a postbox.