Skip to content

Commit 3cce469

Browse files
riemanliThe Meridian Authors
authored andcommitted
Add population_value field to GeoInfo Proto
PiperOrigin-RevId: 866151092
1 parent 65af824 commit 3cce469

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

proto/mmm/v1/marketing/marketing_data.proto

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,14 @@ message GeoInfo {
2626
string geo_id = 1;
2727

2828
// The population of the geo location. Required.
29-
int64 population = 2;
29+
// DEPRECATED: Use population_value instead.
30+
// NOTE: This field may be rounded. Prefer `population_value` if precision
31+
// is required and the field is available.
32+
int64 population = 2 [deprecated = true];
33+
34+
// Population with double precision. This field should be used instead of
35+
// `population` when available.
36+
double population_value = 3;
3037
}
3138

3239
// A KPI (key performance indicator) can either be revenue directly, or some

0 commit comments

Comments
 (0)