洛阳学员端
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.

48 lines
1.4 KiB

7 months ago
  1. //
  2. // ZimInitResponse.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 ZimInitResponse;
  10. @class PBMapStringString;
  11. #ifndef SUPPORT_PB
  12. @interface ZimInitResponse:NSObject
  13. @property (nonatomic) SInt32 retCode ;
  14. @property (nonatomic,strong) NSString* message ;
  15. @property (nonatomic,strong) NSString* zimId ;
  16. @property (nonatomic,strong) NSString* protocol ;
  17. @property (nonatomic,strong) NSDictionary* extParams ;
  18. @property (nonatomic,strong) NSString* retCodeSub ;
  19. @property (nonatomic,strong) NSString* retMessageSub ;
  20. @property (nonatomic,strong) NSString* WishContent;//retMessageSub ;
  21. + (Class)extParamsElementClass;
  22. @end
  23. #else
  24. #import <APProtocolBuffers/ProtocolBuffers.h>
  25. @interface ZimInitResponse : APDPBGeneratedMessage
  26. @property (readonly) BOOL hasRetCode;
  27. @property (readonly) BOOL hasMessage;
  28. @property (readonly) BOOL hasZimId;
  29. @property (readonly) BOOL hasProtocol;
  30. @property (readonly) BOOL hasExtParams;
  31. @property (nonatomic) SInt32 retCode ;
  32. @property (nonatomic,strong) NSString* message ;
  33. @property (nonatomic,strong) NSString* zimId ;
  34. @property (nonatomic,strong) NSString* protocol ;
  35. @property (nonatomic,strong) PBMapStringString* extParams ;
  36. @property (nonatomic,strong) NSString* retCodeSub ;
  37. @property (nonatomic,strong) NSString* retMessageSub ;
  38. @end
  39. #endif