DBTEAMLOGBinderReorderSectionDetails
Objective-C
@interface DBTEAMLOGBinderReorderSectionDetails
: NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGBinderReorderSectionDetails : NSObject, DBSerializable, NSCopying
The BinderReorderSectionDetails
struct.
Reordered Binder section.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Event unique identifier.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull eventUuid;
Swift
var eventUuid: String { get }
-
Title of the Binder doc.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull docTitle;
Swift
var docTitle: String { get }
-
Name of the Binder page/section.
Declaration
Objective-C
@property (nonatomic, copy, readonly) NSString *_Nonnull binderItemName;
Swift
var binderItemName: String { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid docTitle:(nonnull NSString *)docTitle binderItemName:(nonnull NSString *)binderItemName;
Swift
init(eventUuid: String, docTitle: String, binderItemName: String)
Parameters
eventUuid
Event unique identifier.
docTitle
Title of the Binder doc.
binderItemName
Name of the Binder page/section.
Return Value
An initialized instance.