using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayDataServiceResult Data Structure.
///
[Serializable]
public class AlipayDataServiceResult : AopObject
{
///
/// 错误码
///
[JsonProperty("code")]
public string Code { get; set; }
///
/// 错误信息
///
[JsonProperty("message")]
public string Message { get; set; }
///
/// 调用结果,json格式
///
[JsonProperty("result")]
public string Result { get; set; }
///
/// 调用是否成功
///
[JsonProperty("success")]
public bool Success { get; set; }
}
}