import { LeadComment } from './lead-comment.model'; import { Member } from '../member/member.model'; export class LeadCommentDeserializer { public deserialize(json: {[key: string]: any}): LeadComment { const leadComment: LeadComment = new LeadComment(); leadComment.id = json['id']; leadComment.content = json['content']; leadComment.createdAt = json['created_at']; leadComment.author = new Member(); leadComment.author.userId = json['author_id']; return leadComment; } }