洛阳学员端
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

47 lines
1.3 KiB

7 months ago
  1. //
  2. // ZimValidateResponse.h
  3. // DTFIdentityManager
  4. //
  5. // Created by richard on 27/08/2017.
  6. // Copyright © 2017 DTF. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. @class ZimValidateResponse;
  10. @class PBMapStringString;
  11. #ifndef SUPPORT_PB
  12. @interface ZimValidateResponse:NSObject
  13. @property (nonatomic) SInt32 validationRetCode ;
  14. @property (nonatomic) SInt32 productRetCode ;
  15. @property (nonatomic) BOOL pb_hasNext ;
  16. @property (nonatomic,strong) NSString* nextProtocol ;
  17. @property (nonatomic,strong) NSDictionary* extParams ;
  18. @property (nonatomic,strong) NSString* retCodeSub ;
  19. @property (nonatomic,strong) NSString* retMessageSub ;
  20. + (Class)extParamsElementClass;
  21. @end
  22. #else
  23. #import <APProtocolBuffers/ProtocolBuffers.h>
  24. @interface ZimValidateResponse : APDPBGeneratedMessage
  25. @property (readonly) BOOL hasValidationRetCode;
  26. @property (readonly) BOOL hasProductRetCode;
  27. @property (readonly) BOOL hasPb_hasNext;
  28. @property (readonly) BOOL hasNextProtocol;
  29. @property (readonly) BOOL hasExtParams;
  30. @property (nonatomic) SInt32 validationRetCode ;
  31. @property (nonatomic) SInt32 productRetCode ;
  32. @property (nonatomic) BOOL pb_hasNext ;
  33. @property (nonatomic,strong) NSString* nextProtocol ;
  34. @property (nonatomic,strong) PBMapStringString* extParams ;
  35. @property (nonatomic,strong) NSString* retCodeSub ;
  36. @property (nonatomic,strong) NSString* retMessageSub;
  37. @end
  38. #endif