ATMessage.h 433 B

123456789101112131415161718
  1. //
  2. // MPaaSATMessage.h
  3. // ATrack
  4. //
  5. // Created by 卡迩 on 2018/4/26.
  6. // Copyright © 2018年 Alipay. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "ATEvent.h"
  10. /**
  11. * 经过渲染的埋点内部消息对象
  12. */
  13. @interface MPaaSATMessage : NSObject
  14. @property (nonatomic, strong) ATEvent *event; /**< 埋点参数对象*/
  15. @property (nonatomic, strong) NSString *content; /**< 埋点内容字符串*/
  16. @end