We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65af824 commit 3cce469Copy full SHA for 3cce469
proto/mmm/v1/marketing/marketing_data.proto
@@ -26,7 +26,14 @@ message GeoInfo {
26
string geo_id = 1;
27
28
// The population of the geo location. Required.
29
- int64 population = 2;
+ // 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;
37
}
38
39
// A KPI (key performance indicator) can either be revenue directly, or some
0 commit comments