会話型アクションのサポートは 2023 年 6 月 13 日に終了しました。詳細については、
会話型アクションの廃止をご覧ください。
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 Developers サイトのポリシーをご覧ください。Java は Oracle および関連会社の登録商標です。
最終更新日 2024-09-10 UTC。
[null,null,["最終更新日 2024-09-10 UTC。"],[[["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"]]