interface CustomerLabel {
    customerNumber: string;
    firstName: string;
    lastName: string;
    type: "CustomerLabel";
}

Properties

customerNumber: string

User-defined unique identifier of the Customer.

firstName: string

Given name (first name) of the Customer.

lastName: string

Family name (last name) of the Customer.

type: "CustomerLabel"