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
48 lines
1.4 KiB
//
|
|
// 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
|