DBTEAMLOGShowcaseDocumentLogInfo

Objective-C

@interface DBTEAMLOGShowcaseDocumentLogInfo
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGShowcaseDocumentLogInfo : NSObject, DBSerializable, NSCopying

The ShowcaseDocumentLogInfo struct.

Showcase document’s logged information.

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

Instance fields

  • Showcase document Id.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull showcaseId;

    Swift

    var showcaseId: String { get }
  • Showcase document title.

    Declaration

    Objective-C

    @property (nonatomic, copy, readonly) NSString *_Nonnull showcaseTitle;

    Swift

    var showcaseTitle: String { get }

Constructors

  • Full constructor for the struct (exposes all instance variables).

    Declaration

    Objective-C

    - (nonnull instancetype)initWithShowcaseId:(nonnull NSString *)showcaseId
                                 showcaseTitle:(nonnull NSString *)showcaseTitle;

    Swift

    init(showcaseId: String, showcaseTitle: String)

    Parameters

    showcaseId

    Showcase document Id.

    showcaseTitle

    Showcase document title.

    Return Value

    An initialized instance.