using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayInsAutoAutoinsprodEnquriyApplyModel Data Structure. /// [Serializable] public class AlipayInsAutoAutoinsprodEnquriyApplyModel : AopObject { /// /// 代理人身份信息 /// [XmlElement("agent")] public InsPerson Agent { get; set; } /// /// 中介(经办)组织信息 /// [XmlElement("agent_organization")] public AgentOrganization AgentOrganization { get; set; } /// /// 技术对接主体组织信息,技术isv /// [XmlElement("agent_tech_organization")] public AgentOrganization AgentTechOrganization { get; set; } /// /// 代理人userId /// [XmlElement("agent_user_id")] public string AgentUserId { get; set; } /// /// 投保人身份信息 /// [XmlElement("applicant")] public InsPerson Applicant { get; set; } /// /// 机构投保业务归属地信息 /// [XmlElement("apply_business_city")] public ApplyBusinessCity ApplyBusinessCity { get; set; } /// /// 车辆信息 /// [XmlElement("car")] public Car Car { get; set; } /// /// 车主身份信息 /// [XmlElement("car_owner")] public InsPerson CarOwner { get; set; } /// /// 投保城市编码 /// [XmlElement("city_code")] public string CityCode { get; set; } /// /// 被保人身份信息 /// [XmlElement("insured")] public InsPerson Insured { get; set; } /// /// 名单id,新电焊模式必传 /// [XmlElement("leads_id")] public string LeadsId { get; set; } /// /// 外部询价申请业务单号(幂等字段) /// [XmlElement("out_biz_no")] public string OutBizNo { get; set; } } }