using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Response
{
///
/// AlipayEcapiprodDrawndnContractGetResponse.
///
public class AlipayEcapiprodDrawndnContractGetResponse : AopResponse
{
///
/// 合同的内容文本 String 合同的内容文本,为HTML格式
///
[JsonProperty("contract_content")]
public string ContractContent { get; set; }
///
/// 合同编号
///
[JsonProperty("contract_no")]
public string ContractNo { get; set; }
///
/// 唯一标识这次请求
///
[JsonProperty("request_id")]
public string RequestId { get; set; }
}
}