IFlyIdentityResult.h 642 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // IFlyIdentityResult.h
  3. // IFlyMSC
  4. //
  5. // Created by 张剑 on 15/5/14.
  6. // Copyright (c) 2015年 iflytek. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. /**
  10. * 身份验证结果类
  11. */
  12. @interface IFlyIdentityResult : NSObject
  13. /**
  14. * json字符串格式结果
  15. */
  16. @property(nonatomic,retain)NSString* result;
  17. /**
  18. * 创建身份验证结果类实例
  19. *
  20. * @param jsonString json字符串
  21. *
  22. * @return 身份验证结果类实例
  23. */
  24. +(instancetype)identityResultWithString:(NSString*)jsonString;
  25. /**
  26. * 返回字典格式的结果
  27. *
  28. * @return 字典格式的结果
  29. */
  30. -(NSDictionary*)dictionaryResults;
  31. @end