OTVPersistLicenseInfo
@interface OTVPersistLicenseInfo : NSObject
/// The license duration in seconds
@property (nonatomic) int64_t duration;
/// The license Info passed from the token in the form of a JSON String.
@property (nonatomic, copy) NSString * _Nullable licenseInfomation;
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;
@end
-
The license duration in seconds
Declaration
Objective-C
@property (nonatomic) int64_t duration;
-
The license Info passed from the token in the form of a JSON String.
Declaration
Objective-C
@property (nonatomic, copy) NSString *_Nullable licenseInfomation;
-
Declaration
Objective-C
- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER;