// // YOUPAILZChatRoomInviactionUpSeatAttachment.m // VQU // // Created by CY on 2021/11/5. // Copyright © 2021 MS. All rights reserved. // #import "YOUPAILZChatRoomInviactionUpSeatAttachment.h" @implementation YOUPAILZChatRoomInviactionUpSeatAttachment - (NSString *)encodeAttachment{ NSDictionary *dict = @{ CMType : @(CustomOnChatRoomInviactionUpSeat), CMData : @{ CMRoomId: self.roomid?self.roomid:@"", CMFrom: self.from_uid ?self.from_uid:@"", CMTo: self.to_uid ?self.to_uid:@"", CMSeat: self.seat ?self.seat:@"", } }; NSData *data = [NSJSONSerialization dataWithJSONObject:dict options:0 error:nil]; NSString *content = nil; if (data) { content = [[NSString alloc] initWithData:data encoding:NSUTF8StringEncoding]; } return content; } @end