OrderCustomer
type OrderCustomer {
id: String
email: String
firstName: String
fullName: String
isGuestCheckout: Boolean
lastName: String
notificationsAccepted: Boolean
phone: String
preferredLanguage: String
}
Fields
idStringIt is the id of the customer who created the order.
emailStringIt is the email of the customer who created the order.
firstNameStringIt is the first name of the customer who created the order.
fullNameStringIt is the full name name of the customer who created the order.
isGuestCheckoutBooleanIndicates whether the order was created by a new customer with no email record. isGuestCheckout returns true if the order was created without customer email information.
lastNameStringIt is the last name of the customer who created the order.
notificationsAcceptedBooleanphoneStringIt is the phone number of the customer who created the order.
preferredLanguageStringIt is the preferred language of the customer who created the order.