blob: ad7d6ed1b7353da68043fbf7bc190d5ebfa07cd2 [file] [log] [blame]
class PhoneType extends $pb.ProtobufEnum {
static const PhoneType MOBILE = const PhoneType._(0, 'MOBILE');
static const PhoneType HOME = const PhoneType._(1, 'HOME');
static const PhoneType WORK = const PhoneType._(2, 'WORK');
static const PhoneType BUSINESS = WORK;
static const $core.List<PhoneType> values = const <PhoneType> [
MOBILE,
HOME,
WORK,
];
static final $core.Map<$core.int, PhoneType> _byValue = $pb.ProtobufEnum.initByValue(values);
static PhoneType valueOf($core.int value) => _byValue[value];
const PhoneType._($core.int v, $core.String n) : super(v, n);
}