NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayIserviceMindvAnswersB...

49 lines
1.6 KiB
C#
Raw Permalink 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;
namespace Aop.Api.Domain
{
/// <summary>
/// AlipayIserviceMindvAnswersBatchqueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayIserviceMindvAnswersBatchqueryModel : AopObject
{
/// <summary>
/// 对应填写的任务id_用以获取指定任务的结果数据 snapshot_id 和 job_id 有且只能有一个不为空
/// </summary>
[XmlElement("job_id")]
public long JobId { get; set; }
/// <summary>
/// 分页数据页码默认从0开始
/// </summary>
[XmlElement("page_num")]
public long PageNum { get; set; }
/// <summary>
/// 分页数据中每页的数据数量,默认为 10
/// </summary>
[XmlElement("per_page_size")]
public long PerPageSize { get; set; }
/// <summary>
/// 问卷快照id_用以查询指定用户指定快照的答案数据 snapshot_id 和 job_id 有且只能有一个不为空
/// </summary>
[XmlElement("snapshot_id")]
public long SnapshotId { get; set; }
/// <summary>
/// 对应账号类型下的唯一账号主键_用以区分对应的填写用户
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
/// <summary>
/// 账号类型_用以区分不同账号体系的用户 ALIPAY-支付宝 HEMA-盒马 ALIBABA_INC-内部域账号
/// </summary>
[XmlElement("user_type")]
public string UserType { get; set; }
}
}