using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayIserviceCognitiveClassificationWasteQueryModel Data Structure.
///
[Serializable]
public class AlipayIserviceCognitiveClassificationWasteQueryModel : AopObject
{
///
/// 业务编码
///
[XmlElement("biz_code")]
public string BizCode { get; set; }
///
/// 市
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 图片url,或者文本
///
[XmlElement("cognition_content")]
public string CognitionContent { get; set; }
///
/// 垃圾识别类型
///
[XmlElement("cognition_type")]
public string CognitionType { get; set; }
///
/// 图片组id 适用于垃圾桶等一次投递拍摄多张图片,一次投递一个id
///
[XmlElement("group_id")]
public string GroupId { get; set; }
///
/// 纬度
///
[XmlElement("latitude")]
public string Latitude { get; set; }
///
/// 经度
///
[XmlElement("longitude")]
public string Longitude { get; set; }
///
/// 业务上游流量来源
///
[XmlElement("source")]
public string Source { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}