postalCode property

  1. @TagNumber(4)
String postalCode

Optional. Postal code of the address. Not all countries use or require postal codes to be present, but where they are used, they may trigger additional validation with other parts of the address (e.g. state/zip validation in the U.S.A.).

Implementation

@$pb.TagNumber(4)
$core.String get postalCode => $_getSZ(3);
  1. @TagNumber(4)
void postalCode=(String v)

Implementation

@$pb.TagNumber(4)
set postalCode($core.String v) { $_setString(3, v); }