blob: 9e9ffab585a1c570d12cdb77bfa0d79ff604e871 [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 List<PhoneType> values = const <PhoneType> [
MOBILE,
HOME,
WORK,
];
static final Map<int, PhoneType> _byValue = $pb.ProtobufEnum.initByValue(values);
static PhoneType valueOf(int value) => _byValue[value];
const PhoneType._(int v, String n) : super(v, n);
}