DBTEAMLOGNamespaceRelativePathLogInfo

Objective-C

@interface DBTEAMLOGNamespaceRelativePathLogInfo
    : NSObject <DBSerializable, NSCopying>

Swift

class DBTEAMLOGNamespaceRelativePathLogInfo : NSObject, DBSerializable, NSCopying

The NamespaceRelativePathLogInfo struct.

Namespace relative path details.

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

Instance fields

  • Namespace ID.

    Declaration

    Objective-C

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

    Swift

    var nsId: String? { get }
  • A path relative to the specified namespace ID.

    Declaration

    Objective-C

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

    Swift

    var relativePath: String? { get }
  • True if the namespace is shared.

    Declaration

    Objective-C

    @property (nonatomic, readonly, nullable) NSNumber *isSharedNamespace;

    Swift

    var isSharedNamespace: NSNumber? { get }

Constructors

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

    Declaration

    Objective-C

    - (nonnull instancetype)initWithNsId:(nullable NSString *)nsId
                            relativePath:(nullable NSString *)relativePath
                       isSharedNamespace:(nullable NSNumber *)isSharedNamespace;

    Swift

    init(nsId: String?, relativePath: String?, isSharedNamespace: NSNumber?)

    Parameters

    nsId

    Namespace ID.

    relativePath

    A path relative to the specified namespace ID.

    isSharedNamespace

    True if the namespace is shared.

    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.