NewGaoKaoApi/PaymentSDK/AliPay/Domain/KbAdvertModifyChannelReques...

31 lines
732 B
C#
Raw Permalink 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;
namespace Aop.Api.Domain
{
/// <summary>
/// KbAdvertModifyChannelRequest Data Structure.
/// </summary>
[Serializable]
public class KbAdvertModifyChannelRequest : AopObject
{
/// <summary>
/// 渠道ID渠道创建接口中返回的channelID
/// </summary>
[XmlElement("channel_id")]
public string ChannelId { get; set; }
/// <summary>
/// 渠道说明
/// </summary>
[XmlElement("memo")]
public string Memo { get; set; }
/// <summary>
/// 渠道名称
/// </summary>
[XmlElement("name")]
public string Name { get; set; }
}
}