locality property

  1. @TagNumber(7)
String get locality

Optional. Generally refers to the city/town portion of the address. Examples: US city, IT comune, UK post town. In regions of the world where localities are not well defined or do not fit into this structure well, leave locality empty and use address_lines.

Implementation

@$pb.TagNumber(7)
$core.String get locality => $_getSZ(6);
  1. @TagNumber(7)
set locality (String v)

Implementation

@$pb.TagNumber(7)
set locality($core.String v) { $_setString(6, v); }