Interface Customer

interface Customer {
    customer_reference?: string;
    email: string;
    first_name: string;
    hcid?: string;
    last_name: string;
    newsletter?: boolean;
    order_number?: string;
    source?: string;
    source_id?: string;
    type?: string;
}

Properties

customer_reference?: string
email: string
first_name: string
hcid?: string
last_name: string
newsletter?: boolean
order_number?: string
source?: string
source_id?: string
type?: string