26 lines
795 B
C#
26 lines
795 B
C#
|
|
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; }
|
|||
|
|
}
|
|||
|
|
}
|