123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- //
- // ZimInitResponse.h
- // DTFIdentityManager
- //
- // Created by richard on 27/08/2017.
- // Copyright © 2017 DTF. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- @class ZimInitResponse;
- @class PBMapStringString;
- #ifndef SUPPORT_PB
- @interface ZimInitResponse:NSObject
- @property (nonatomic) SInt32 retCode ;
- @property (nonatomic,strong) NSString* message ;
- @property (nonatomic,strong) NSString* zimId ;
- @property (nonatomic,strong) NSString* protocol ;
- @property (nonatomic,strong) NSDictionary* extParams ;
- @property (nonatomic,strong) NSString* retCodeSub ;
- @property (nonatomic,strong) NSString* retMessageSub ;
- @property (nonatomic,strong) NSString* WishContent;//retMessageSub ;
- + (Class)extParamsElementClass;
- @end
- #else
- #import <APProtocolBuffers/ProtocolBuffers.h>
- @interface ZimInitResponse : APDPBGeneratedMessage
- @property (readonly) BOOL hasRetCode;
- @property (readonly) BOOL hasMessage;
- @property (readonly) BOOL hasZimId;
- @property (readonly) BOOL hasProtocol;
- @property (readonly) BOOL hasExtParams;
- @property (nonatomic) SInt32 retCode ;
- @property (nonatomic,strong) NSString* message ;
- @property (nonatomic,strong) NSString* zimId ;
- @property (nonatomic,strong) NSString* protocol ;
- @property (nonatomic,strong) PBMapStringString* extParams ;
- @property (nonatomic,strong) NSString* retCodeSub ;
- @property (nonatomic,strong) NSString* retMessageSub ;
- @end
- #endif
|