DBTEAMLOGBinderRenameSectionDetails

Objective-C

@interface DBTEAMLOGBinderRenameSectionDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGBinderRenameSectionDetails : NSObject, DBSerializable, NSCopying

The BinderRenameSectionDetails struct.

Renamed 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 }
  • Previous name of the Binder page/section.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly, nullable) NSString *previousBinderItemName;

    Swift

    var previousBinderItemName: 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
                       previousBinderItemName:
                           (nullable NSString *)previousBinderItemName;

    Swift

    init(eventUuid: String, docTitle: String, binderItemName: String, previousBinderItemName: String?)

    Parameters

    eventUuid

    Event unique identifier.

    docTitle

    Title of the Binder doc.

    binderItemName

    Name of the Binder page/section.

    previousBinderItemName

    Previous name of the Binder page/section.

    Return Value

    An initialized instance.

  • Convenience constructor (exposes only non-nullable instance variables with no default value).

    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.