Request to add GoogleMyBusiness Categories to Place
type: questionpriority: p2
Thank you to the team for the google-cloud-dotnet.
Feature request:
- Could GoogleMyBusiness Categories be added to the Place object?
Example of GoogleMyBusinessCategories:
https://mybusinessbusinessinformation.googleapis.com/v1/categories
Here is how it appears in the Google.Apis.MyBusinessBusinessInformation.v1
public class Categories : Google.Apis.Requests.IDirectResponseSchema
{
/// <summary>
/// Optional. Additional categories to describe your business. Categories help your customers find accurate,
/// specific results for services they're interested in. To keep your business information accurate and live,
/// make sure that you use as few categories as possible to describe your overall core business. Choose
/// categories that are as specific as possible, but representative of your main business.
/// </summary>
[Newtonsoft.Json.JsonPropertyAttribute("additionalCategories")]
public virtual System.Collections.Generic.IList<Category> AdditionalCategories { get; set; }
/// <summary>Required. Category that best describes the core business this location engages in.</summary>
[Newtonsoft.Json.JsonPropertyAttribute("primaryCategory")]
public virtual Category PrimaryCategory { get; set; }
/// <summary>The ETag of the item.</summary>
public virtual string ETag { get; set; }
}
0 条评论