DBTEAMLOGShowcaseFileDownloadDetails

Objective-C

@interface DBTEAMLOGShowcaseFileDownloadDetails
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGShowcaseFileDownloadDetails : NSObject, DBSerializable, NSCopying

The ShowcaseFileDownloadDetails struct.

Downloaded file from showcase.

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 }
  • Showcase download type.

    Declaration

    Objective-C

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

    Swift

    var downloadType: String { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithEventUuid:(nonnull NSString *)eventUuid
                                 downloadType:(nonnull NSString *)downloadType;

    Swift

    init(eventUuid: String, downloadType: String)

    Parameters

    eventUuid

    Event unique identifier.

    downloadType

    Showcase download type.

    Return Value

    An initialized instance.