UserInfo

  • The JSON representation provides information about a user associated with an order, including their email, name, and phone numbers.

  • The user object includes fields for email, first name, last name, display name, and an array of phone numbers.

  • Each phone number is represented as a separate object with its own properties (as defined in the PhoneNumber object).

Information about user. This is used to represent information of the user associated with an order.

JSON representation
{
  "email": string,
  "firstName": string,
  "lastName": string,
  "displayName": string,
  "phoneNumbers": [
    {
      object (PhoneNumber)
    }
  ]
}
Fields
email

string

User email, Eg: janedoe@gmail.com.

firstName

string

First name of the user.

lastName

string

Last name of the user.

displayName

string

Display name of the user, might be different from first or last name.

phoneNumbers[]

object (PhoneNumber)

Phone numbers of the user.