State

sealed class State

The state of a field at cancellation time.

Inheritors

Types

Link copied to clipboard
data class CardBrandNotAccepted(val brand: MPCardBrand) : State

The card brand is not accepted by the seller.

Link copied to clipboard
data class CardTypeNotAccepted(val cardType: MPCardType?) : State

The card type is not accepted by the seller.

Link copied to clipboard
data object Empty : State

The field was left empty.

Link copied to clipboard
data object Incomplete : State

The field was partially filled.

Link copied to clipboard
data object Invalid : State

The field contained an invalid value.

Link copied to clipboard
data object Valid : State

The field was filled with a valid value.