EZOpenSDK  v4.7.1
 All Classes Functions Properties
EZAccessToken.h
1 //
2 // EZAccessToken.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/10/19.
6 // Copyright © 2015Ezviz.. All rights reserved.
7 //
8 
9 #import <Foundation/Foundation.h>
10 
12 @interface EZAccessToken : NSObject
13 
15 @property (nonatomic, copy) NSString *accessToken;
17 @property (nonatomic, assign) NSInteger expire;
18 
19 @end
NSInteger expire
accessToken Expired seconds. Current Time+Expired Seconds=Expiry Time
Definition: EZAccessToken.h:17
NSString * accessToken
accessToken Login credential
Definition: EZAccessToken.h:15
Hik-Connect system credential information after authorized login.
Definition: EZAccessToken.h:12