using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// BPOpenApiPUID Data Structure.
///
[Serializable]
public class BPOpenApiPUID : AopObject
{
///
/// 系统名称
///
[JsonProperty("app_name")]
public string AppName { get; set; }
///
/// 业务ID,对应业务单条记录的ID
///
[JsonProperty("biz_id")]
public string BizId { get; set; }
///
/// 业务类型。不要填写下划线、点等特殊符号
///
[JsonProperty("biz_type")]
public string BizType { get; set; }
///
/// 一般留空。如果一个biz_id可发起多个流程实例,则填写此值
///
[JsonProperty("unique_key")]
public string UniqueKey { get; set; }
}
}