DBTEAMLOGPathLogInfo
Objective-C
@interface DBTEAMLOGPathLogInfo : NSObject <DBSerializable, NSCopying>
Swift
class DBTEAMLOGPathLogInfo : NSObject, DBSerializable, NSCopying
The PathLogInfo
struct.
Path’s details.
This class implements the DBSerializable
protocol (serialize and
deserialize instance methods), which is required for all Obj-C SDK API route
objects.
-
Fully qualified path relative to event’s context.
Declaration
Objective-C
@property (nonatomic, copy, readonly, nullable) NSString *contextual;
Swift
var contextual: String? { get }
-
Path relative to the namespace containing the content.
Declaration
Objective-C
@property (nonatomic, readonly) DBTEAMLOGNamespaceRelativePathLogInfo *_Nonnull namespaceRelative;
Swift
var namespaceRelative: DBTEAMLOGNamespaceRelativePathLogInfo { get }
-
Full constructor for the struct (exposes all instance variables).
Declaration
Objective-C
- (nonnull instancetype) initWithNamespaceRelative: (nonnull DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative contextual:(nullable NSString *)contextual;
Swift
init(namespaceRelative: DBTEAMLOGNamespaceRelativePathLogInfo, contextual: String?)
Parameters
namespaceRelative
Path relative to the namespace containing the content.
contextual
Fully qualified path relative to event’s context.
Return Value
An initialized instance.
-
Convenience constructor (exposes only non-nullable instance variables with no default value).
Declaration
Objective-C
- (nonnull instancetype)initWithNamespaceRelative: (nonnull DBTEAMLOGNamespaceRelativePathLogInfo *)namespaceRelative;
Swift
init(namespaceRelative: DBTEAMLOGNamespaceRelativePathLogInfo)
Parameters
namespaceRelative
Path relative to the namespace containing the content.
Return Value
An initialized instance.