STSChatMetadata

@interface STSChatMetadata : LHDataObject

Model for chatroom metadata.

  • key

    The key of the metadata.

    Declaration

    Objective-C

    @property (nonatomic, readonly) NSString *_Nonnull key;

    Swift

    var key: UnsafeMutablePointer<Int32>! { get }
  • The value of the metadata.

    The value types could be:

    • NSArray
    • NSNull
    • NSNumber (also includes booleans)
    • NSDictionary
    • NSString

    Declaration

    Objective-C

    @property (nonatomic, readonly) id _Nonnull value;

    Swift

    var value: Any! { get }