src/main/java/com/spotify/ffwd/http/model/v1/Batch.java [45:56]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      @JsonProperty("commonResource") final Optional<Map<String, String>> commonResource,
      @JsonProperty("points") final List<Point> points
  ) {
    return new Batch(commonTags.orElseGet(ImmutableMap::of),
        commonResource.orElseGet(ImmutableMap::of), points);
  }

  @Data
  public static class Point {
    private final String key;
    private final Map<String, String> tags;
    private final Map<String, String> resource;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



src/main/java/com/spotify/ffwd/http/model/v2/Batch.java [52:63]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
      @JsonProperty("commonResource") final Optional<Map<String, String>> commonResource,
      @JsonProperty("points") final List<Point> points
  ) {
    return new Batch(commonTags.orElseGet(ImmutableMap::of),
        commonResource.orElseGet(ImmutableMap::of), points);
  }

  @Data
  public static class Point {
    private final String key;
    private final Map<String, String> tags;
    private final Map<String, String> resource;
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



