EZOpenSDK  4.8.6
 全部  函数 属性
EZAccessToken.h
1 //
2 // EZAccessToken.h
3 // EzvizOpenSDK
4 //
5 // Created by DeJohn Dong on 15/10/19.
6 // Copyright © 2015年 Ezviz. 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过期的时间点,相对于1970年的毫秒数
Definition: EZAccessToken.h:17
NSString * accessToken
accessToken 登录凭证
Definition: EZAccessToken.h:15
此类为萤石开放平台授权登录以后的凭证信息
Definition: EZAccessToken.h:12