Package-level declarations

Types

Link copied to clipboard
class PickupDelivery constructor(fromMessage: Message)

The PickupDelivery class represents a pickup delivery protocol type in the Atala PRISM architecture. It is a final class, meaning it cannot be subclassed.

Link copied to clipboard
class PickupReceived constructor(var id: String = UUID.randomUUID().toString(), val from: DID, val to: DID, var body: PickupReceived.Body)

Represents a pickup received message.

Link copied to clipboard
class PickupRequest constructor(var id: String = UUID.randomUUID().toString(), val from: DID, val to: DID, var body: PickupRequest.Body)

A class representing a pickup request.

Link copied to clipboard
class PickupRunner(message: Message, mercury: Mercury)

The PickupRunner class is responsible for processing Message objects related to pickup requests and delivering them using the Mercury service. It provides methods to run the pickup request and process the response.