ARTMessageAnnotations
Objective-C
@interface ARTMessageAnnotations : NSObject
Swift
class ARTMessageAnnotations : NSObject
Contains annotations summary for a message. The keys of the dict are annotation types, and the values are aggregated summaries for that annotation type.
-
An annotations summary for the message. The keys of the dict are annotation types, and the values are aggregated summaries for that annotation type.
Declaration
Objective-C
@property (nonatomic, copy, nullable) ARTJsonObject *summary;
Swift
var summary: [String : Any]? { get set }
-
Undocumented
Declaration
Objective-C
- (void)writeToDictionary:(NSMutableDictionary<NSString *, id> *)dictionary;
Swift
func write(to dictionary: NSMutableDictionary)
-
Undocumented
Declaration
Objective-C
+ (instancetype)createFromDictionary:(NSDictionary<NSString *, id> *)jsonObject;
Swift
class func create(from jsonObject: [String : Any]) -> Self