You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Field masks may permit the specification of specific fields in a map, if and only if the map's keys are either strings or integers, using the . character for traversal.
Field masks should support string keys that contain characters that are problematic for the field mask syntax, using the backtick character.
// The name of the book.
// Format: publishers/{publisher}/books/{book}
string name = 1;
// Reviews for the back cover. The key is the author of the review,
// and the value is the text of the review.
//
// Valid field masks: reviews, reviews.smith, reviews.`John Smith`
map<string, string> reviews = 2;
}```
This is currently not supported by the package: providing a field mask that the specifies reviews.`John Smith` or reviews.smith among the paths will result in a validation error.
The text was updated successfully, but these errors were encountered:
This is currently not supported by the package: providing a field mask that the specifies
reviews.`John Smith`
orreviews.smith
among the paths will result in a validation error.The text was updated successfully, but these errors were encountered: