using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayCommerceOperationContentQueryModel Data Structure.
///
[Serializable]
public class AlipayCommerceOperationContentQueryModel : AopObject
{
///
/// 展台
///
[XmlArray("booth")]
[XmlArrayItem("string")]
public List Booth { get; set; }
///
/// 渠道
///
[XmlElement("channel")]
public string Channel { get; set; }
///
/// 城市编码
///
[XmlElement("city_code")]
public string CityCode { get; set; }
///
/// 内容 ID 加密串
///
[XmlElement("content_id_str")]
public string ContentIdStr { get; set; }
///
/// 扩展参数 , json 串
///
[XmlElement("ext_params")]
public string ExtParams { get; set; }
///
/// 分页查询页码
///
[XmlElement("page_number")]
public string PageNumber { get; set; }
///
/// 分页查询每页记录数
///
[XmlElement("page_size")]
public string PageSize { get; set; }
///
/// 运营场景
///
[XmlElement("scene")]
public string Scene { get; set; }
///
/// 运营阵地 : 比如一个页面
///
[XmlElement("touch_point")]
public string TouchPoint { get; set; }
///
/// 蚂蚁统一会员ID
///
[XmlElement("user_id")]
public string UserId { get; set; }
}
}