Represents a key-value pair attribute for a customer.

interface CustomerAttributeType {
    Key: string;
    Value: string;
}

Properties

Properties

Key: string

The key of the customer attribute.

Value: string

The value of the customer attribute.