ContactInformation
Stay organized with collections
Save and categorize content based on your preferences.
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[null,null,["Last updated 2024-09-18 UTC."],[[["\u003cp\u003eThe JSON representation provides contact information for buyers or sellers.\u003c/p\u003e\n"],["\u003cp\u003eContact details include email address and name, represented by the \u003ccode\u003eemail\u003c/code\u003e and \u003ccode\u003ename\u003c/code\u003e fields respectively.\u003c/p\u003e\n"]]],["The content describes a contact information structure using JSON. It specifies two fields: `email`, a string representing the contact's email address, and `name`, a string for the contact's name. This structure is intended to represent the contact details for a buyer or seller, allowing communication through a provided email address and identification by name. This information can be represented using the JSON format: `{ \"email\": string, \"name\": string }`.\n"],null,["# ContactInformation\n\n- [JSON representation](#SCHEMA_REPRESENTATION)\n\nContains information on how a buyer or seller can be reached.\n\n| JSON representation ||\n|---------------------------------------------|---|\n| ``` { \"email\": string, \"name\": string } ``` |\n\n| Fields ||\n|---------|-----------------------------------------|\n| `email` | `string` Email address for the contact. |\n| `name` | `string` The name of the contact. |"]]