TMBItem

@interface TMBItem : NSObject <TMBObjectEncodable, TMBObjectDecodable>

A TMBItem represents a User object. - see: https://tamber.com/docs/api/#item-object

  • ID

    Unique ID associated with the item.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSString *ID;

    Swift

    var id: String? { get set }
  • Properties associated with the item.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSDictionary *properties;

    Swift

    var properties: [AnyHashable : Any]? { get set }
  • List of all tags assigned to the item.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSArray *tags;

    Swift

    var tags: [Any]? { get set }
  • Time the item was created.

    Declaration

    Objective-C

    @property (nonatomic, copy, nullable) NSDate *created;

    Swift

    var created: Date? { get set }
  • Indicates that the item is hidden from all users.

    Declaration

    Objective-C

    @property (nonatomic) BOOL hidden;

    Swift

    var hidden: Bool { get set }