NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAppAppcontentFunc...

78 lines
2.2 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayOpenAppAppcontentFunctionModifyModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAppAppcontentFunctionModifyModel : AopObject
{
/// <summary>
/// 区域编码默认值为1表示全国范围编码参考高德地图JS API相关下载中的行政区编码与城市编码表https://lbs.amap.com/api/javascript-api/download/
/// </summary>
[XmlArray("area_codes")]
[XmlArrayItem("string")]
public List<string> AreaCodes { get; set; }
/// <summary>
/// 类目
/// </summary>
[XmlArray("category_ids")]
[XmlArrayItem("string")]
public List<string> CategoryIds { get; set; }
/// <summary>
/// 服务icon
/// </summary>
[XmlElement("icon")]
public string Icon { get; set; }
/// <summary>
/// 关键字列表
/// </summary>
[XmlArray("key_words")]
[XmlArrayItem("string")]
public List<string> KeyWords { get; set; }
/// <summary>
/// 服务编码
/// </summary>
[XmlElement("service_code")]
public string ServiceCode { get; set; }
/// <summary>
/// 服务名称
/// </summary>
[XmlElement("service_name")]
public string ServiceName { get; set; }
/// <summary>
/// 服务结束时间默认值23:59:59
/// </summary>
[XmlElement("service_time_end")]
public string ServiceTimeEnd { get; set; }
/// <summary>
/// 服务开始时间默认值00:00:00
/// </summary>
[XmlElement("service_time_start")]
public string ServiceTimeStart { get; set; }
/// <summary>
/// 服务地址列表
/// </summary>
[XmlArray("service_urls")]
[XmlArrayItem("service_url")]
public List<ServiceUrl> ServiceUrls { get; set; }
/// <summary>
/// 短描述
/// </summary>
[XmlElement("short_desc")]
public string ShortDesc { get; set; }
}
}