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

43 lines
1.1 KiB

7 months ago
  1. //
  2. // ZimValidateRequest.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 ZimValidateRequest;
  10. #ifndef SUPPORT_PB
  11. @interface ZimValidateRequest:NSObject
  12. @property (nonatomic,strong) NSString* zimId ;
  13. @property (nonatomic,copy) NSString* zimData ;
  14. @property(nonatomic, strong) NSDictionary* bizData;
  15. @property (nonatomic,strong)NSString *idString;
  16. @property (nonatomic,strong)NSString *nameString;
  17. @property (nonatomic,strong)NSString *externParam;
  18. @property(nonatomic, strong) NSDictionary* wishDict;
  19. @property(nonatomic, strong) NSArray* wishVideoUrl;
  20. @property(nonatomic, strong) NSArray* wishAudioUrl;
  21. + (Class)bizDataElementClass;
  22. @end
  23. #else
  24. #import <APProtocolBuffers/ProtocolBuffers.h>
  25. @interface ZimValidateRequest : APDPBGeneratedMessage
  26. @property (readonly) BOOL hasZimId;
  27. @property (readonly) BOOL hasZimData;
  28. @property (readonly) BOOL hasBizData;
  29. @property (nonatomic,strong) NSString* zimId ;
  30. @property (nonatomic,strong) NSData* zimData ;
  31. @property (nonatomic,strong) PBMapStringString* bizData;
  32. @end
  33. #endif