OrderCustomer
type OrderCustomer {
id: String
email: String
firstName: String
fullName: String
isGuestCheckout: Boolean
lastName: String
notificationsAccepted: Boolean
phone: String
preferredLanguage: String
}
Fields
id
StringIt is the id of the customer who created the order.
email
StringIt is the email of the customer who created the order.
firstName
StringIt is the first name of the customer who created the order.
fullName
StringIt is the full name name of the customer who created the order.
isGuestCheckout
BooleanIndicates 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.
lastName
StringIt is the last name of the customer who created the order.
notificationsAccepted
Booleanphone
StringIt is the phone number of the customer who created the order.
preferredLanguage
StringIt is the preferred language of the customer who created the order.