State

sealed class State

Possible states in which an Invitation may be.

Types

Link copied to clipboard
data class Accepted(acceptedBy: Participant) : Invitation.State

The invitation was accepted.

Link copied to clipboard
object Canceled : Invitation.State

The invitation was canceled by the sender.

Link copied to clipboard
object Companion
Link copied to clipboard
object Pending : Invitation.State

The invitation is waiting for response.

Link copied to clipboard
data class Rejected(reason: Invitation.Reason) : Invitation.State

The invitation was rejected.

Functions

Link copied to clipboard
open override fun toString(): String

Inheritors

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard