using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiHealthStepinfoGetuserstatusResponse. /// public class OapiHealthStepinfoGetuserstatusResponse : DingTalkResponse { /// /// errcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errmsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// true表示开启,false表示未开启 /// [XmlElement("status")] public bool Status { get; set; } } }