DBTEAMLOGBinderRemoveSectionDetails

Objective-C

@interface DBTEAMLOGBinderRemoveSectionDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGBinderRemoveSectionDetails : NSObject, DBSerializable, NSCopying

The BinderRemoveSectionDetails struct.

Removed Binder section.

This class implements the DBSerializable protocol (serialize and deserialize instance methods), which is required for all Obj-C SDK API route objects.

Instance fields

  • 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 }

Constructors

  • 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.