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):2024-09-10。
[null,null,["最后更新时间 (UTC):2024-09-10。"],[[["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)."]]],["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"]]