Interface OrderCustomer

interface OrderCustomer {
    country: string;
    email?: string;
    first_name?: string;
    last_name?: string;
    newsletter?: string;
    order_number: string;
    phone: string;
    post_code: string;
    type?: string;
}

Properties

country: string
email?: string
first_name?: string
last_name?: string
newsletter?: string
order_number: string
phone: string
post_code: string
type?: string