using System; using System.Xml.Serialization; using System.Collections.Generic; using Top.Api; namespace DingTalk.Api.Response { /// /// OapiRhinoMosExecClothesUnperformedGetResponse. /// public class OapiRhinoMosExecClothesUnperformedGetResponse : DingTalkResponse { /// /// 错误码 /// [XmlElement("errcode")] public long Errcode { get; set; } /// /// 错误信息 /// [XmlElement("errmsg")] public string Errmsg { get; set; } /// /// 衣服ID列表 /// [XmlElement("model")] public PageResultDomain Model { get; set; } /// /// 是否成功 /// [XmlElement("success")] public bool Success { get; set; } /// /// PageResultDomain Data Structure. /// [Serializable] public class PageResultDomain : TopObject { /// /// 起始位置 /// [XmlElement("current_start")] public long CurrentStart { get; set; } /// /// 页大小 /// [XmlElement("page_size")] public long PageSize { get; set; } /// /// 结果 /// [XmlArray("result")] [XmlArrayItem("number")] public List Result { get; set; } /// /// 总数 /// [XmlElement("total")] public long Total { get; set; } } } }