using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InsObject Data Structure.
///
[Serializable]
public class InsObject : AopObject
{
///
/// 标的物的标识id
///
[JsonProperty("insured_object_id")]
public string InsuredObjectId { get; set; }
///
/// 标的信息;标准json 格式
///
[JsonProperty("insured_object_info")]
public string InsuredObjectInfo { get; set; }
///
/// 标的类型;0:财产所在地;1:其它;2:车;3:资金债务;4:电商订单
///
[JsonProperty("type")]
public long Type { get; set; }
}
}