using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiIndustryOrganizationGetResponse. /// public class OapiIndustryOrganizationGetResponse : DingTalkResponse { /// /// dingOpenErrcode /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// errorMsg /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// result /// [XmlElement("result")] public OpenIndustryOrgInfoDomain Result { get; set; } /// /// 成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// OpenIndustryOrgInfoDomain Data Structure. /// [Serializable] public class OpenIndustryOrgInfoDomain : TopObject { /// /// 区域id信息 /// [XmlElement("region_id")] public string RegionId { get; set; } /// /// 区域信息 /// [XmlElement("region_location")] public string RegionLocation { get; set; } /// /// 区域类型,区/镇/村 /// [XmlElement("region_type")] public string RegionType { get; set; } } } }