DBTEAMLOGMissingDetails

Objective-C

@interface DBTEAMLOGMissingDetails : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGMissingDetails : NSObject, DBSerializable, NSCopying

The MissingDetails struct.

An indication that an error occurred while retrieving the event. Some attributes of the event may be omitted as a result.

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

Instance fields

  • All the data that could be retrieved and converted from the source event.

    Declaration

    Objective-C

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

    Swift

    var sourceEventFields: String? { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithSourceEventFields:
        (nullable NSString *)sourceEventFields;

    Swift

    init(sourceEventFields: String?)

    Parameters

    sourceEventFields

    All the data that could be retrieved and converted from the source event.

    Return Value

    An initialized instance.

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

    Declaration

    Objective-C

    - (nonnull instancetype)initDefault;

    Swift

    init(default: ())

    Return Value

    An initialized instance.