ARTMessageOperation

Objective-C

@interface ARTMessageOperation : NSObject

Swift

class ARTMessageOperation : NSObject

An interface outlining the optional ARTMessageOperation object which resides in an ARTMessage object. This is populated within the ARTMessage object when the message is an update or delete operation.

  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *clientId

    Swift

    var clientId: String? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSString *descriptionText

    Swift

    var descriptionText: String? { get set }
  • Undocumented

    Declaration

    Objective-C

    @property (nonatomic, strong, nullable) NSDictionary<NSString *, NSString *> *metadata

    Swift

    var metadata: [String : String]? { 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