GoogleAuthenticatorImport.pbenum.dart 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. ///
  2. // Generated code. Do not modify.
  3. // source: GoogleAuthenticatorImport.proto
  4. //
  5. // @dart = 2.12
  6. // ignore_for_file: annotate_overrides,camel_case_types,unnecessary_const,non_constant_identifier_names,library_prefixes,unused_import,unused_shown_name,return_of_invalid_type,unnecessary_this,prefer_final_fields
  7. // ignore_for_file: UNDEFINED_SHOWN_NAME
  8. import 'dart:core' as $core;
  9. import 'package:protobuf/protobuf.dart' as $pb;
  10. class GoogleAuthenticatorImport_Algorithm extends $pb.ProtobufEnum {
  11. static const GoogleAuthenticatorImport_Algorithm ALGORITHM_UNSPECIFIED =
  12. GoogleAuthenticatorImport_Algorithm._(
  13. 0,
  14. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  15. ? ''
  16. : 'ALGORITHM_UNSPECIFIED');
  17. static const GoogleAuthenticatorImport_Algorithm ALGORITHM_SHA1 =
  18. GoogleAuthenticatorImport_Algorithm._(
  19. 1,
  20. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  21. ? ''
  22. : 'ALGORITHM_SHA1');
  23. static const GoogleAuthenticatorImport_Algorithm ALGORITHM_SHA256 =
  24. GoogleAuthenticatorImport_Algorithm._(
  25. 2,
  26. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  27. ? ''
  28. : 'ALGORITHM_SHA256');
  29. static const GoogleAuthenticatorImport_Algorithm ALGORITHM_SHA512 =
  30. GoogleAuthenticatorImport_Algorithm._(
  31. 3,
  32. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  33. ? ''
  34. : 'ALGORITHM_SHA512');
  35. static const GoogleAuthenticatorImport_Algorithm ALGORITHM_MD5 =
  36. GoogleAuthenticatorImport_Algorithm._(
  37. 4,
  38. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  39. ? ''
  40. : 'ALGORITHM_MD5');
  41. static const $core.List<GoogleAuthenticatorImport_Algorithm> values =
  42. <GoogleAuthenticatorImport_Algorithm>[
  43. ALGORITHM_UNSPECIFIED,
  44. ALGORITHM_SHA1,
  45. ALGORITHM_SHA256,
  46. ALGORITHM_SHA512,
  47. ALGORITHM_MD5,
  48. ];
  49. static final $core.Map<$core.int, GoogleAuthenticatorImport_Algorithm>
  50. _byValue = $pb.ProtobufEnum.initByValue(values);
  51. static GoogleAuthenticatorImport_Algorithm? valueOf($core.int value) =>
  52. _byValue[value];
  53. const GoogleAuthenticatorImport_Algorithm._($core.int v, $core.String n)
  54. : super(v, n);
  55. }
  56. class GoogleAuthenticatorImport_DigitCount extends $pb.ProtobufEnum {
  57. static const GoogleAuthenticatorImport_DigitCount DIGIT_COUNT_UNSPECIFIED =
  58. GoogleAuthenticatorImport_DigitCount._(
  59. 0,
  60. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  61. ? ''
  62. : 'DIGIT_COUNT_UNSPECIFIED');
  63. static const GoogleAuthenticatorImport_DigitCount DIGIT_COUNT_SIX =
  64. GoogleAuthenticatorImport_DigitCount._(
  65. 1,
  66. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  67. ? ''
  68. : 'DIGIT_COUNT_SIX');
  69. static const GoogleAuthenticatorImport_DigitCount DIGIT_COUNT_EIGHT =
  70. GoogleAuthenticatorImport_DigitCount._(
  71. 2,
  72. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  73. ? ''
  74. : 'DIGIT_COUNT_EIGHT');
  75. static const $core.List<GoogleAuthenticatorImport_DigitCount> values =
  76. <GoogleAuthenticatorImport_DigitCount>[
  77. DIGIT_COUNT_UNSPECIFIED,
  78. DIGIT_COUNT_SIX,
  79. DIGIT_COUNT_EIGHT,
  80. ];
  81. static final $core.Map<$core.int, GoogleAuthenticatorImport_DigitCount>
  82. _byValue = $pb.ProtobufEnum.initByValue(values);
  83. static GoogleAuthenticatorImport_DigitCount? valueOf($core.int value) =>
  84. _byValue[value];
  85. const GoogleAuthenticatorImport_DigitCount._($core.int v, $core.String n)
  86. : super(v, n);
  87. }
  88. class GoogleAuthenticatorImport_OtpType extends $pb.ProtobufEnum {
  89. static const GoogleAuthenticatorImport_OtpType OTP_TYPE_UNSPECIFIED =
  90. GoogleAuthenticatorImport_OtpType._(
  91. 0,
  92. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  93. ? ''
  94. : 'OTP_TYPE_UNSPECIFIED');
  95. static const GoogleAuthenticatorImport_OtpType OTP_TYPE_HOTP =
  96. GoogleAuthenticatorImport_OtpType._(
  97. 1,
  98. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  99. ? ''
  100. : 'OTP_TYPE_HOTP');
  101. static const GoogleAuthenticatorImport_OtpType OTP_TYPE_TOTP =
  102. GoogleAuthenticatorImport_OtpType._(
  103. 2,
  104. const $core.bool.fromEnvironment('protobuf.omit_enum_names')
  105. ? ''
  106. : 'OTP_TYPE_TOTP');
  107. static const $core.List<GoogleAuthenticatorImport_OtpType> values =
  108. <GoogleAuthenticatorImport_OtpType>[
  109. OTP_TYPE_UNSPECIFIED,
  110. OTP_TYPE_HOTP,
  111. OTP_TYPE_TOTP,
  112. ];
  113. static final $core.Map<$core.int, GoogleAuthenticatorImport_OtpType>
  114. _byValue = $pb.ProtobufEnum.initByValue(values);
  115. static GoogleAuthenticatorImport_OtpType? valueOf($core.int value) =>
  116. _byValue[value];
  117. const GoogleAuthenticatorImport_OtpType._($core.int v, $core.String n)
  118. : super(v, n);
  119. }