OliveappUserRegistrationStatus.h 421 B

123456789101112131415161718
  1. //
  2. // UserRegistrationStatus.h
  3. // YituLivenessDetectionSDK
  4. //
  5. // Created by jqshen on 8/25/15.
  6. // Copyright (c) 2015 YITU. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. typedef NS_ENUM(int, UserRegistrationStatus) {
  10. REGISTRATIO_SUCC = 1,
  11. // USER_NOT_REGISTERED = 2,
  12. USER_NOT_REGISTERED_WITH_SPRCIFIED_IMAGE_TYPE = 3,
  13. UNDER_REGISTRATION = 4,
  14. REGISTRATION_FAILED = 5,
  15. ERROR = 6
  16. };