UserInfo
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
JSON 表示法 |
{
"email": string,
"firstName": string,
"lastName": string,
"displayName": string,
"phoneNumbers": [
{
object (PhoneNumber )
}
]
} |
字段 |
email |
string
用户电子邮件地址,例如:janedoe@gmail.com。
|
firstName |
string
用户的名字。
|
lastName |
string
用户的姓氏。
|
displayName |
string
用户的显示名称,可能与名字或姓氏不同。
|
phoneNumbers[] |
object (PhoneNumber )
用户的电话号码。
|
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-07-26。
[null,null,["最后更新时间 (UTC):2025-07-26。"],[[["\u003cp\u003eThe JSON representation provides information about a user associated with an order, including their email, name, and phone numbers.\u003c/p\u003e\n"],["\u003cp\u003eThe \u003ccode\u003euser\u003c/code\u003e object includes fields for email, first name, last name, display name, and an array of phone numbers.\u003c/p\u003e\n"],["\u003cp\u003eEach phone number is represented as a separate object with its own properties (as defined in the PhoneNumber object).\u003c/p\u003e\n"]]],["The JSON representation defines user information with fields for `email`, `firstName`, `lastName`, and `displayName` which are all strings. It also contains an array, `phoneNumbers`, which holds phone number objects. The `email` field stores the user's email address. The `firstName` and `lastName` fields store the user's given and family names. The `displayName` allows for a user-specified display name. Finally, `phoneNumbers` holds one or multiple objects with the user's phone number details.\n"],null,["# UserInfo\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nInformation about user. This is used to represent information of the user associated with an order.\n\n| JSON representation ||\n|--------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|---|\n| ``` { \"email\": string, \"firstName\": string, \"lastName\": string, \"displayName\": string, \"phoneNumbers\": [ { object (/assistant/df-asdk/reference/webhook/rest/Shared.Types/PhoneNumber) } ] } ``` |\n\n| Fields ||\n|------------------|---------------------------------------------------------------------------------------------------------------------------|\n| `email` | `string` User email, Eg: [janedoe@gmail.com](mailto:janedoe@gmail.com). |\n| `firstName` | `string` First name of the user. |\n| `lastName` | `string` Last name of the user. |\n| `displayName` | `string` Display name of the user, might be different from first or last name. |\n| `phoneNumbers[]` | `object (`[PhoneNumber](/assistant/df-asdk/reference/webhook/rest/Shared.Types/PhoneNumber)`)` Phone numbers of the user. |"]]