using System;
using System.Xml.Serialization;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
///
/// AlipayOpenAppCommunityPartnerSyncModel Data Structure.
///
[Serializable]
public class AlipayOpenAppCommunityPartnerSyncModel : AopObject
{
///
/// 操作类型(PUT/REMOVE)
///
[XmlElement("action")]
public string Action { get; set; }
///
/// 关系类型
///
[XmlElement("rela_type")]
public string RelaType { get; set; }
///
/// 关系来源
///
[XmlElement("source_channel")]
public string SourceChannel { get; set; }
///
/// 源对象id
///
[XmlElement("source_id")]
public string SourceId { get; set; }
///
/// 目标对象列表
///
[XmlArray("target_list")]
[XmlArrayItem("community_partner_relation_data_sync_d_t_o")]
public List TargetList { get; set; }
}
}