Data describing the dispatch of a confirmation code.

interface AuthCodeDeliveryDetails<UserAttributeKey> {
    attributeName?: UserAttributeKey;
    deliveryMedium?: AuthDeliveryMedium;
    destination?: string;
}

Type Parameters

Properties

attributeName?: UserAttributeKey
deliveryMedium?: AuthDeliveryMedium
destination?: string