12345678910111213141516171819202122232425 |
- //
- // WFCCConversation.m
- // WFChatClient
- //
- // Created by heavyrain on 2017/8/16.
- // Copyright © 2017年 WildFireChat. All rights reserved.
- //
- #import "WFCCDeliveryReport.h"
- @implementation WFCCDeliveryReport
- +(instancetype)delivered:(NSString *)userId
- timestamp:(long long)timestamp {
- WFCCDeliveryReport *d = [[WFCCDeliveryReport alloc] init];
- d.userId = userId;
- d.timestamp = timestamp;
- return d;;
- }
- - (id)toJsonObj {
- NSMutableDictionary *dict = [[NSMutableDictionary alloc] init];
- dict[@"key"] = self.userId;
- [self setDict:dict key:@"value" longlongValue:self.timestamp];
- return dict;
- }
- @end
|