using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AssetResult Data Structure.
///
[Serializable]
public class AssetResult : AopObject
{
///
/// 订单明细ID
///
[JsonProperty("assign_item_id")]
public string AssignItemId { get; set; }
///
/// 错误码
///
[JsonProperty("error_code")]
public string ErrorCode { get; set; }
///
/// 错误描述
///
[JsonProperty("error_desc")]
public string ErrorDesc { get; set; }
///
/// 是否处理成功
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}