using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayEcoMycarDialogonlineAnswerPushModel Data Structure. /// [Serializable] public class AlipayEcoMycarDialogonlineAnswerPushModel : AopObject { /// /// 回复内容 /// [JsonProperty("answer_content")] public string AnswerContent { get; set; } /// /// 技师ID /// [JsonProperty("answer_id")] public string AnswerId { get; set; } /// /// 技师头像 /// [JsonProperty("answer_logo")] public string AnswerLogo { get; set; } /// /// 技师昵称 /// [JsonProperty("answer_name")] public string AnswerName { get; set; } /// /// 回复图片 /// [JsonProperty("answer_pic")] public string AnswerPic { get; set; } /// /// 回复时间 /// [JsonProperty("answer_time")] public string AnswerTime { get; set; } /// /// 1:问题回复, 2:对话回复 /// [JsonProperty("answer_type")] public string AnswerType { get; set; } /// /// 内容类型,1:文本, 2:图片 /// [JsonProperty("content_type")] public string ContentType { get; set; } /// /// 问题ID /// [JsonProperty("question_id")] public string QuestionId { get; set; } } }