regionCode property

  1. @TagNumber(2)
String get regionCode

Required. CLDR region code of the country/region of the address. This is never inferred and it is up to the user to ensure the value is correct. See http://cldr.unicode.org/ and http://www.unicode.org/cldr/charts/30/supplemental/territory_information.html for details. Example: "CH" for Switzerland.

Implementation

@$pb.TagNumber(2)
$core.String get regionCode => $_getSZ(1);
  1. @TagNumber(2)
set regionCode (String v)

Implementation

@$pb.TagNumber(2)
set regionCode($core.String v) { $_setString(1, v); }