Represents an unique customer identifier used for processes requiring verified identifier, such as email, mobile number, etc.

interface CustomerIdentifier {
    value: string;
    verificationId: string;
}

Properties

value: string

Identifier's value, such as email, mobile number etc.

verificationId: string

A unique identifier for the verification process associated with the customer attribute.