extension_3 property

  1. @TagNumber(3)
String extension_3

Extension is not standardized in ITU recommendations, except for being defined as a series of numbers with a maximum length of 40 digits. It is defined as a string here to accommodate for the possible use of a leading zero in the extension (organizations have complete freedom to do so, as there is no standard defined). Other than digits, some other dialling characters such as "," (indicating a wait) may be stored here.

Implementation

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

Implementation

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