एट्रिब्यूट की मदद से, कारोबार अन्य जानकारी शामिल कर सकते हैं. जैसे, सुलभता के विकल्प और सुविधाएं.
लिस्टिंग के एट्रिब्यूट
किसी मुख्य कैटगरी और देश से जुड़ी विशेषताओं की सूची देखने के लिए, attributes.list
के लिए अनुरोध करें. एट्रिब्यूट डाइनैमिक होते हैं और इन्हें बार-बार लिया जाना चाहिए. नीचे दिए गए सेक्शन में दिया गया उदाहरण देखें.
अनुरोध
किसी लिस्टिंग की कैटगरी, क्षेत्र के कोड, और भाषा कोड के आधार पर, किसी लिस्टिंग की एट्रिब्यूट की सूची बनाने के लिए, नीचे दिया गया सैंपल अनुरोध देखें:
GET https://mybusinessbusinessinformation.googleapis.com/v1/attributes?regionCode=US&languageCode=EN&categoryName=gcid:restaurant
जगह के आईडी का इस्तेमाल करके किसी लिस्टिंग के एट्रिब्यूट की सूची बनाने के लिए, नीचे दिया गया सैंपल अनुरोध देखें:
GET https://mybusinessbusinessinformation.googleapis.com/v1/attributes?parent=locations/{locationId}
जवाब
नीचे दिए गए 'कुछ हद तक जवाब', AttributeValueType
की अलग-अलग वैल्यू वाले एट्रिब्यूट दिखाते हैं.
{ { "attributeId": "has_live_music", "valueType": "BOOL", "displayName": "Live music", "groupDisplayName": "Highlights", "valueMetadata": [ { "value": true, "displayName": "Live music" } ], "displayStrings": { "uiText": "Live music", "standaloneText": "Has live music", "negativeText": "No live music" } }, { "attributeId": "has_wheelchair_accessible_entrance", "valueType": "BOOL", "displayName": "Wheelchair accessible entrance", "groupDisplayName": "Accessibility", "valueMetadata": [ { "value": true, "displayName": "Wheelchair accessible entrance" }, { "value": false, "displayName": "No wheelchair accessible entrance" } ], "displayStrings": { "uiText": "Wheelchair accessible entrance", "standaloneText": "Has wheelchair accessible entrance", "negativeText": "No wheelchair accessible entrance" } }, { "attributeId": "has_braille_menu", "valueType": "BOOL", "displayName": "Braille menu", "groupDisplayName": "Offerings", "valueMetadata": [ { "value": true, "displayName": "Braille menu" } ], "displayStrings": { "uiText": "Braille menu", "standaloneText": "Has braille menu", "negativeText": "No braille menu" } }, { "attributeId": "has_no_contact_delivery", "valueType": "BOOL", "displayName": "No-contact delivery", "groupDisplayName": "Offerings", "valueMetadata": [ { "value": true, "displayName": "No-contact delivery" } ], "displayStrings": { "uiText": "No-contact delivery", "standaloneText": "Has no-contact delivery", "negativeText": "No no-contact delivery" } }, { "attributeId": "welcomes_lgbtq", "valueType": "BOOL", "displayName": "LGBTQ friendly", "groupDisplayName": "Planning", "valueMetadata": [ { "value": true, "displayName": "LGBTQ friendly" } ], "displayStrings": { "uiText": "LGBTQ friendly", "standaloneText": "LGBTQ friendly", "negativeText": "Not showing LGBT friendly" } }, { "attributeId": "wi_fi", "valueType": "ENUM", "displayName": "Wi-Fi", "groupDisplayName": "Amenities", "valueMetadata": [ { "value": "free_wi_fi", "displayName": "Free" }, { "value": "paid_wi_fi", "displayName": "Paid" } ], "displayStrings": { "uiText": "Wi-Fi", "standaloneText": "Has Wi-Fi", "negativeText": "No Wi-Fi" } }, { "attributeId": "pay_credit_card_types_accepted", "valueType": "REPEATED_ENUM", "displayName": "Credit cards", "groupDisplayName": "Payments", "isRepeatable": true, "valueMetadata": [ { "value": "american_express", "displayName": "American Express" }, { "value": "china_union_pay", "displayName": "China Union Pay" }, { "value": "diners_club", "displayName": "Diners Club" }, { "value": "discover", "displayName": "Discover" }, { "value": "jcb", "displayName": "JCB" }, { "value": "mastercard", "displayName": "MasterCard" }, { "value": "visa", "displayName": "VISA" } ], "displayStrings": { "uiText": "Credit cards", "standaloneText": "Credit cards accepted", "negativeText": "Credit cards not accepted" } } ] }
किसी लिस्टिंग के लिए एट्रिब्यूट सेट करना
एट्रिब्यूट को इनके साथ सेट करने के लिए
locations.updateAttributes
attributeMask
पैरामीटर को उन एट्रिब्यूट के साथ सेट करें जिन्हें आपको अपडेट करना है.
नीचे दिए गए उदाहरण में, लिस्टिंग के लिए स्वीकार किए जाने वाले क्रेडिट कार्ड के टाइप और डिलीवरी के विकल्प के एट्रिब्यूट सेट किए गए हैं.
PATCH https://mybusinessbusinessinformation.googleapis.com/v1/locations/{locationId}?attributeMask=pay_credit_card_types_accepted,has_no_contact_delivery { "name": "locations/{locationId}/attributes "attributes": [ { "name": "has_no_contact_delivery", "values": [ true ] }, { "name": "pay_credit_card_types_accepted", "repeatedEnumValue": { "setValues": [ "american_express", "visa" ] } } ] }