using System;
using System.Xml.Serialization;
using System.Collections.Generic;
using Top.Api;
namespace DingTalk.Api.Response
{
///
/// OapiRhinoMosSpaceWorkstationGetResponse.
///
public class OapiRhinoMosSpaceWorkstationGetResponse : DingTalkResponse
{
///
/// 错误码
///
[XmlElement("errcode")]
public long Errcode { get; set; }
///
/// 错误信息
///
[XmlElement("errmsg")]
public string Errmsg { get; set; }
///
/// 结果
///
[XmlElement("model")]
public ProdWorkstationDtoDomain Model { get; set; }
///
/// ProdWorkstationDtoDomain Data Structure.
///
[Serializable]
public class ProdWorkstationDtoDomain : TopObject
{
///
/// 类目code
///
[XmlElement("category_code")]
public string CategoryCode { get; set; }
///
/// 类目子code
///
[XmlElement("category_sub_code")]
public string CategorySubCode { get; set; }
///
/// 兴趣点code
///
[XmlElement("poi_code")]
public string PoiCode { get; set; }
///
/// 站位code
///
[XmlElement("prod_workstation_code")]
public string ProdWorkstationCode { get; set; }
///
/// 站位name
///
[XmlElement("prod_workstation_name")]
public string ProdWorkstationName { get; set; }
///
/// 租户ID
///
[XmlElement("tenant_id")]
public string TenantId { get; set; }
}
}
}