/** The basic containment relation between places. */ @NotNull public Builder containedIn(@NotNull Place.Builder place) { putValue("containedIn", place.build()); return this; }
/** Points-of-Sales operated by the organization or person. */ @NotNull public Builder hasPOS(@NotNull Place.Builder place) { putValue("hasPOS", place.build()); return this; }
/** The place where the Organization was founded. */ @NotNull public Builder foundingLocation(@NotNull Place.Builder place) { putValue("foundingLocation", place.build()); return this; }
/** * The location depicted or described in the content. For example, the location in a photograph * or painting. */ @NotNull public Builder contentLocation(@NotNull Place.Builder place) { putValue("contentLocation", place.build()); return this; }