using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// AlipayUserAntpaasRoleDeleteModel Data Structure.
///
[Serializable]
public class AlipayUserAntpaasRoleDeleteModel : AopObject
{
///
/// 业务场景
///
[XmlElement("biz_scene")]
public string BizScene { get; set; }
///
/// 角色Id
///
[XmlElement("ip_role_id")]
public string IpRoleId { get; set; }
///
/// 被动建立关系的 会员来源业务平台类型。104-金融云平台,103-淘宝平台,102-保险平台
///
[XmlElement("join_rel_role_biz_platform")]
public string JoinRelRoleBizPlatform { get; set; }
///
/// 主操作员ID
///
[XmlElement("operator_id")]
public string OperatorId { get; set; }
///
/// 角色关系类型,1-保险业务,2-金融云业务
///
[XmlElement("rel_biz_typ")]
public string RelBizTyp { get; set; }
}
}