using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AntMerchantExpandClassificationCreateormodifyModel Data Structure.
///
[Serializable]
public class AntMerchantExpandClassificationCreateormodifyModel : AopObject
{
///
/// 标签Key(英文标识),不存在的Key是无法执行的
///
[XmlElement("classification_key")]
public string ClassificationKey { get; set; }
///
/// 标签值
///
[XmlElement("classification_value")]
public string ClassificationValue { get; set; }
///
/// 可选:商户PID、间连SMID、店铺ShopID,具体根据target_type入参值决定
///
[XmlElement("target_id")]
public string TargetId { get; set; }
///
/// 决定target_id的类型 target_type取值为0,target_id为间连SMID target_type取值为2,target_id为商户PID target_type取值为5,target_id为店铺ShopID
///
[XmlElement("target_type")]
public string TargetType { get; set; }
}
}