Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayInsSceneClaimAttachmentConfirmModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

26 lines
795 B
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayInsSceneClaimAttachmentConfirmModel Data Structure.
/// </summary>
[Serializable]
public class AlipayInsSceneClaimAttachmentConfirmModel : AopObject
{
/// <summary>
/// 理赔申请报案号通过理赔申请【alipay.ins.scene.claim.apply】接口的返回字段claim_report_no获取
/// </summary>
[JsonProperty("claim_report_no")]
public string ClaimReportNo { get; set; }
/// <summary>
/// 上传的文件名清单列表即alipay.ins.scene.claim.attachment.upload 接口中的attachment_name 用逗号(,)隔离
/// </summary>
[JsonProperty("upload_files")]
public List<string> UploadFiles { get; set; }
}
}