DeliveryDestination
public enum DeliveryDestination
extension DeliveryDestination: Equatable
Destination to where an item (e.g., confirmation code) was delivered
-
Email destination with optional associated value containing the email info
Declaration
Swift
case email(Destination?)
-
Phone destination with optional associated value containing the phone number info
Declaration
Swift
case phone(Destination?)
-
SMS destination with optional associated value containing the number info
Declaration
Swift
case sms(Destination?)
-
Unknown destination with optional associated value destination detail
Declaration
Swift
case unknown(Destination?)