VoiceState.cs 500 B

123456789101112131415161718192021222324
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. using System;
  9. namespace Meta.WitAi.Events
  10. {
  11. [Flags]
  12. public enum VoiceState
  13. {
  14. MicOff = 1, //000001
  15. MicOn = 2, //000010
  16. Listening = 4,//000100
  17. StartProcessing = 8,//001000
  18. Response = 16,//010000
  19. Error = 32, //100000
  20. }
  21. }