using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiEduCardUserPostUpdateResponse. /// public class OapiEduCardUserPostUpdateResponse : DingTalkResponse { /// /// 无效参数 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 系统自动生成 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 系统自动生成 /// [XmlElement("result")] public UpdatePostResponseDomain Result { get; set; } /// /// 系统自动生成 /// [XmlElement("success")] public bool Success { get; set; } /// /// UpdatePostResponseDomain Data Structure. /// [Serializable] public class UpdatePostResponseDomain : TopObject { /// /// 动态ID /// [XmlElement("post_id")] public long PostId { get; set; } } } }