洛阳学员端
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. // ZimInitRequest.h
  3. // DTFIdentityManager
  4. //
  5. // Created by richard on 27/08/2017.
  6. // Copyright © 2017 All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #ifndef SUPPORT_PB
  10. @interface ZimInitRequest:NSObject
  11. @property (nonatomic,strong) NSString* zimId ;
  12. @property (nonatomic,strong) NSString* channel ;
  13. @property (nonatomic,strong) NSString* merchant ;
  14. @property (nonatomic,strong) NSString* productName ;
  15. @property (nonatomic,strong) NSString* produceNode ;
  16. @property (nonatomic,strong) NSString* bizData ;
  17. @property (nonatomic,strong) NSString* metaInfo ;
  18. @end
  19. #else
  20. #import <APProtocolBuffers/ProtocolBuffers.h>
  21. @interface ZimInitRequest : APDPBGeneratedMessage
  22. @property (readonly) BOOL hasZimId;
  23. @property (readonly) BOOL hasChannel;
  24. @property (readonly) BOOL hasMerchant;
  25. @property (readonly) BOOL hasProductName;
  26. @property (readonly) BOOL hasProduceNode;
  27. @property (readonly) BOOL hasBizData;
  28. @property (readonly) BOOL hasMetaInfo;
  29. @property (nonatomic,strong) NSString* zimId ;
  30. @property (nonatomic,strong) NSString* channel ;
  31. @property (nonatomic,strong) NSString* merchant ;
  32. @property (nonatomic,strong) NSString* productName ;
  33. @property (nonatomic,strong) NSString* produceNode ;
  34. @property (nonatomic,strong) NSString* bizData ;
  35. @property (nonatomic,strong) NSString* metaInfo ;
  36. @end
  37. #endif