NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayInsUnderwriteUserPoli...

45 lines
1.5 KiB
C#
Raw 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;
using System.Collections.Generic;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayInsUnderwriteUserPolicyQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsUnderwriteUserPolicyQueryModel : AopObject
{
/// <summary>
/// 页码必须为大于0的整数 1表示第一页2表示第2页依次类推。不填默认值为1
/// </summary>
[XmlElement("page_no")]
public long PageNo { get; set; }
/// <summary>
/// 每页记录条数必须为大于0的整数最大值为20,不填默认值为10
/// </summary>
[XmlElement("page_size")]
public long PageSize { get; set; }
/// <summary>
/// 查询对应的保险干系人
/// </summary>
[XmlElement("person")]
public InsQueryPerson Person { get; set; }
/// <summary>
/// 查询的保单对于的产品列表。查询返回的结果是这几个产品下的保单,格式为: [产品码1,产品码2,...]
/// </summary>
[XmlArray("product_list")]
[XmlArrayItem("string")]
public List<string> ProductList { get; set; }
/// <summary>
/// 保单状态.INEFFECTIVE:未生效、GUARANTEE:保障中、EXPIRED:已失效、SURRENDERRED:已退保、ALL: 所有保单 不填默认值为ALL(所有保单)
/// </summary>
[XmlElement("status")]
public string Status { get; set; }
}
}