using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// SmartworkBpmsProcessGetbybiztypeResponse. /// public class SmartworkBpmsProcessGetbybiztypeResponse : DingTalkResponse { /// /// result /// [XmlElement("result")] public DingOpenResultDomain Result { get; set; } /// /// ProcessTopVoDomain Data Structure. /// [Serializable] public class ProcessTopVoDomain : TopObject { /// /// 流程模板唯一标识 /// [XmlElement("process_code")] public string ProcessCode { get; set; } /// /// 流程模板名称 /// [XmlElement("process_name")] public string ProcessName { get; set; } } /// /// DingOpenResultDomain Data Structure. /// [Serializable] public class DingOpenResultDomain : TopObject { /// /// 错误码 /// [XmlElement("ding_open_errcode")] public long DingOpenErrcode { get; set; } /// /// 错误信息 /// [XmlElement("error_msg")] public string ErrorMsg { get; set; } /// /// 返回数据 /// [XmlArray("process_list")] [XmlArrayItem("process_top_vo")] public List ProcessList { get; set; } /// /// success /// [XmlElement("success")] public bool Success { get; set; } } } }