{
"price": {
object ([Money](https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations#Location.Money))
},
// Union field service_item_info can be only one of the following:
"structuredServiceItem": {
object ([StructuredServiceItem](https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations#Location.StructuredServiceItem))
},
"freeFormServiceItem": {
object ([FreeFormServiceItem](https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations#Location.FreeFormServiceItem))
}
// End of list of possible types for union field service_item_info.
}
$response = $client->authorize()->request('GET', 'https://mybusinessbusinessinformation.googleapis.com/v1/locations/xxxx?readMask=name,languageCode,storeCode,title,phoneNumbers,categories,storefrontAddress,websiteUri,regularHours,specialHours,serviceArea,labels,adWordsLocationExtensions,latlng,openInfo,metadata,profile,relationshipData,moreHours,serviceItems');
$response = json_decode($response->getBody());
Environment details
Steps to reproduce
serviceItemsprice object is missing, As per https://developers.google.com/my-business/reference/businessinformation/rest/v1/accounts.locations#Location.ServiceItembelow should be the object
but in my case
pricenode is missingCode example
I also tried using https://developers.google.com/oauthplayground, still same result price object is missing !
Thanks!