DBTEAMLOGRewindFolderDetails
Objective-C
@interface DBTEAMLOGRewindFolderDetails : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGRewindFolderDetails : NSObject, DBSerializable, NSCopying
The RewindFolderDetails
struct.
Rewound a folder.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Folder was Rewound to this date.
Declaration
Objective-C
@property (nonatomic, readonly) NSDate *_Nonnull rewindFolderTargetTsMs;
Swift
var rewindFolderTargetTsMs: Date { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithRewindFolderTargetTsMs: (nonnull NSDate *)rewindFolderTargetTsMs;
Swift
init(rewindFolderTargetTsMs: Date)
Parameters
rewindFolderTargetTsMs
Folder was Rewound to this date.
Return Value
An initialized instance.