接口文件
This commit is contained in:
@@ -0,0 +1,89 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAccountExrateAdviceAcceptResponse.
|
||||
/// </summary>
|
||||
public class AlipayAccountExrateAdviceAcceptResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 客户号:用于定义FX交易的客户,由外汇交易中心统一分配
|
||||
/// </summary>
|
||||
[JsonProperty("client_id")]
|
||||
public string ClientId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应金额,选输项
|
||||
/// </summary>
|
||||
[JsonProperty("contra_amount")]
|
||||
public string ContraAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 相应币种
|
||||
/// </summary>
|
||||
[JsonProperty("contra_ccy")]
|
||||
public string ContraCcy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// FX中心的处理序号
|
||||
/// </summary>
|
||||
[JsonProperty("deal_ref")]
|
||||
public string DealRef { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实际成交的汇率,原FXRateUsed。
|
||||
/// </summary>
|
||||
[JsonProperty("dealt_rate")]
|
||||
public string DealtRate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 是否重复消息
|
||||
/// </summary>
|
||||
[JsonProperty("duplicate")]
|
||||
public bool Duplicate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易请求号
|
||||
/// </summary>
|
||||
[JsonProperty("messag_id")]
|
||||
public string MessagId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请求类型 字典:H - HedgeAdvise , T - TradeAdvise。锁价模式下先发送Hedge,在发送对应的Trade。非锁价模式下,可直接发送Trade
|
||||
/// </summary>
|
||||
[JsonProperty("msg_type")]
|
||||
public string MsgType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 汇率使用状态 字典:QUALIFY, EXCEPTION。请求汇率是否被使用,QUALIFY - 与请求汇率一致,EXCEPTION - 未使用请求汇率
|
||||
/// </summary>
|
||||
[JsonProperty("requested_rate_status")]
|
||||
public string RequestedRateStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 买卖方向:BUY,SELL。客户视角对交易货币的操作。该字段为必填,与原TransactionType的对应关系如下: SALE - SELL REFUND - BUY CHARGEBACK - BUY
|
||||
/// CHARGEBACK_RESEVSE - SELL CANCELLATION - 使用原交易的side" r1
|
||||
/// </summary>
|
||||
[JsonProperty("side")]
|
||||
public string Side { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易金额
|
||||
/// </summary>
|
||||
[JsonProperty("transaction_amount")]
|
||||
public string TransactionAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易币种: 客户视角的交易买卖币种
|
||||
/// </summary>
|
||||
[JsonProperty("transaction_ccy")]
|
||||
public string TransactionCcy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起息日期 : YYYYMMDD,客户期望的资金交割日期
|
||||
/// </summary>
|
||||
[JsonProperty("value_date")]
|
||||
public string ValueDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAccountExrateAllclientrateQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAccountExrateAllclientrateQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 汇率信息列表
|
||||
/// </summary>
|
||||
[JsonProperty("client_rate_list")]
|
||||
|
||||
public List<ExClientRateVO> ClientRateList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAccountExrateRatequeryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAccountExrateRatequeryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 查询到的汇率对象列表,如果没有查询到则返回空列表
|
||||
/// </summary>
|
||||
[JsonProperty("rate_query_response_list")]
|
||||
|
||||
public List<ExRefRateInfoVO> RateQueryResponseList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAccountExrateTraderequestCreateResponse.
|
||||
/// </summary>
|
||||
public class AlipayAccountExrateTraderequestCreateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 成交汇率的基准币种
|
||||
/// </summary>
|
||||
[JsonProperty("base_ccy")]
|
||||
public string BaseCcy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 原请求客户号
|
||||
/// </summary>
|
||||
[JsonProperty("client_id")]
|
||||
public string ClientId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应金额
|
||||
/// </summary>
|
||||
[JsonProperty("contra_amount")]
|
||||
public string ContraAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应币种
|
||||
/// </summary>
|
||||
[JsonProperty("contra_ccy")]
|
||||
public string ContraCcy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// FX返回关联该笔业务单据的交易号
|
||||
/// </summary>
|
||||
[JsonProperty("deal_ref")]
|
||||
public string DealRef { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 成交汇率
|
||||
/// </summary>
|
||||
[JsonProperty("dealt_rate")]
|
||||
public string DealtRate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该请求是否为重复发送。当为true时,结果码和结果描述,为该交易当前的处理情况。
|
||||
/// </summary>
|
||||
[JsonProperty("duplicate")]
|
||||
public string Duplicate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请求类型 字典:H - HedgeAdvise , T - TradeAdvise。
|
||||
/// </summary>
|
||||
[JsonProperty("msg_type")]
|
||||
public string MsgType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 业务唯一单据号
|
||||
/// </summary>
|
||||
[JsonProperty("requested_message_id")]
|
||||
public string RequestedMessageId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 汇率使用状态,字典:QUALIFY, EXCEPTION。请求汇率是否被使用,QUALIFY - 与请求汇率一致,EXCEPTION - 未使用请求汇率
|
||||
/// </summary>
|
||||
[JsonProperty("requested_rate_status")]
|
||||
public string RequestedRateStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请求返回类型,字典,同步受理返回 acknowledge:ACK ; 异步成交回执 executtion report:EXEC
|
||||
/// </summary>
|
||||
[JsonProperty("response_type")]
|
||||
public string ResponseType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易方向
|
||||
/// </summary>
|
||||
[JsonProperty("side")]
|
||||
public string Side { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易金额
|
||||
/// </summary>
|
||||
[JsonProperty("transaction_amount")]
|
||||
public string TransactionAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交易币种
|
||||
/// </summary>
|
||||
[JsonProperty("transaction_ccy")]
|
||||
public string TransactionCcy { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起息日
|
||||
/// </summary>
|
||||
[JsonProperty("value_date")]
|
||||
public string ValueDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquireCancelResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquireCancelResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 对返回响应码进行原因说明,当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明。 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回。
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 撤销处理结果响应码。 SUCCESS:撤销成功 FAIL:撤销失败 UNKNOWN:结果未知
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对撤销失败的情况下,是否可以继续发起撤销请求的建议。 Y:可继续发起撤销请求; N:不可继续发起撤销请求,即后续的撤销请求也不会成功。
|
||||
/// </summary>
|
||||
[JsonProperty("retry_flag")]
|
||||
public string RetryFlag { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该交易在支付宝系统中的交易流水号。 最短16位,最长64位。
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquireCloseResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquireCloseResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 对返回响应码进行原因说明 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请求是否成功。请求成功不代表业务处理成功。 T代表成功 F代表失败
|
||||
/// </summary>
|
||||
[JsonProperty("is_success")]
|
||||
public string IsSuccess { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 关闭处理结果响应码。 SUCCESS:关闭成功 NKNOWN:结果未知
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该交易在支付宝系统中的交易流水号。 最短16位,最长64位
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquireCreateandpayResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquireCreateandpayResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 买家支付宝账号,可以为email或者手机号。对部分信息进行了隐藏。
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_logon_id")]
|
||||
public string BuyerLogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 买家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字。
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_user_id")]
|
||||
public string BuyerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对返回响应码进行原因说明,请参见“10.2 业务错误码”。 当result_code响应码为ORDER_SUCCESS_PAY_SUCCESS时,不返回该参数。
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明。 当result_code响应码为ORDER_SUCCESS_PAY_SUCCESS时,不返回该参数。
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付后返回的其他信息,如预付卡金额,key值mcard_fee,以Json格式返回。
|
||||
/// </summary>
|
||||
[JsonProperty("extend_info")]
|
||||
public string ExtendInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 7085502131376415
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 下单并支付处理结果响应码,请参见“10.1 业务响应码”。
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该交易在支付宝系统中的交易流水号。 最短16位,最长64位。
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquirePrecreateResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquirePrecreateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 详细错误码。对返回响应码进行原因说明 当result_code响应码为SUCCESS时,不返回该参数。
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 错误代码。 请求成功时,不存在本参数; 请求失败时,本参数为错误代码
|
||||
/// </summary>
|
||||
[JsonProperty("error")]
|
||||
public string Error { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 请求是否成功。请求成功不代表业务处理成功 T代表成功 F代表失败
|
||||
/// </summary>
|
||||
[JsonProperty("is_success")]
|
||||
public string IsSuccess { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 二维码图片的URL地址
|
||||
/// </summary>
|
||||
[JsonProperty("pic_url")]
|
||||
public string PicUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 二维码码串的内容
|
||||
/// </summary>
|
||||
[JsonProperty("qr_code")]
|
||||
public string QrCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 预下单处理结果响应码。 SUCCESS:预下单成功 FAIL:预下单失败 UNKNOWN:结果未知
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝交易号。该交易在支付宝系统中的交易流水号。 最短16位,最长64位
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 凭证类型,目前仅支持qrcode(二维码)
|
||||
/// </summary>
|
||||
[JsonProperty("voucher_type")]
|
||||
public string VoucherType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquireQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquireQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 买家支付宝账号,可以是Email或手机号码。
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_logon_id")]
|
||||
public string BuyerLogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 买家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_user_id")]
|
||||
public string BuyerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对返回响应码进行原因说明”。 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明。 当result_code响应码为SUCCESS时,不返回该参数
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回。
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 签约的支付宝账号对应的支付宝唯一用户号。 以2088开头的16位纯数字组成。
|
||||
/// </summary>
|
||||
[JsonProperty("partner")]
|
||||
public string Partner { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 查询处理结果响应码: SUCCESS:查询成功 FAIL:查询失败 PROCESS_EXCEPTION:处理异常
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该交易在支付宝系统中的交易流水号。 最短16位,最长64位。
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAcquireRefundResponse.
|
||||
/// </summary>
|
||||
public class AlipayAcquireRefundResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 买家支付宝账号,可以是Email或手机号码。
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_logon_id")]
|
||||
public string BuyerLogonId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 买家支付宝账号对应的支付宝唯一用户号。 以2088开头的纯16位数字
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_user_id")]
|
||||
public string BuyerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对返回响应码进行原因说明
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_code")]
|
||||
public string DetailErrorCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对详细错误码进行文字说明。 当result_code响应码为SUCCESS时,不返回该参数。
|
||||
/// </summary>
|
||||
[JsonProperty("detail_error_des")]
|
||||
public string DetailErrorDes { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对同一个商户退款请求,如果该笔退款已退款过,则直接返回上一次的退款结果。同时,返回本次请求是否发生了资金变动的标识。 Y:本次退款请求发生资金变动; N:本次退款请求未发送资金变动。
|
||||
/// </summary>
|
||||
[JsonProperty("fund_change")]
|
||||
public string FundChange { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 对应商户网站的订单系统中的唯一订单号,非支付宝交易号。 需保证在商户网站中的唯一性。是请求时对应的参数,原样返回。
|
||||
/// </summary>
|
||||
[JsonProperty("out_trade_no")]
|
||||
public string OutTradeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 退款处理结果响应码。 SUCCESS:退款成功 FAIL:退款失败 UNKNOWN:结果未知
|
||||
/// </summary>
|
||||
[JsonProperty("result_code")]
|
||||
public string ResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该交易在支付宝系统中的交易流水号。 最短16位,最长64位。
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAppTokenGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayAppTokenGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 应用访问令牌
|
||||
/// </summary>
|
||||
[JsonProperty("app_access_token")]
|
||||
public string AppAccessToken { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应用访问凭证有效时间,单位:秒
|
||||
/// </summary>
|
||||
[JsonProperty("expires_in")]
|
||||
public long ExpiresIn { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAssetPointBalanceQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAssetPointBalanceQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 用户的集分宝余额
|
||||
/// </summary>
|
||||
[JsonProperty("point_amount")]
|
||||
public long PointAmount { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAssetPointBudgetQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAssetPointBudgetQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 还可以发放的集分宝个数
|
||||
/// </summary>
|
||||
[JsonProperty("budget_amount")]
|
||||
public long BudgetAmount { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAssetPointOrderCreateResponse.
|
||||
/// </summary>
|
||||
public class AlipayAssetPointOrderCreateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝集分宝发放流水号
|
||||
/// </summary>
|
||||
[JsonProperty("alipay_order_no")]
|
||||
public string AlipayOrderNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,58 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayAssetPointOrderQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayAssetPointOrderQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝集分宝发放流水号
|
||||
/// </summary>
|
||||
[JsonProperty("alipay_order_no")]
|
||||
public string AlipayOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发放时间,格式:yyyy-MM-dd HH:mm:ss
|
||||
/// </summary>
|
||||
[JsonProperty("create_time")]
|
||||
public string CreateTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝集分宝发放者用户ID
|
||||
/// </summary>
|
||||
[JsonProperty("dispatch_user_id")]
|
||||
public string DispatchUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 向用户展示集分宝发放备注
|
||||
/// </summary>
|
||||
[JsonProperty("memo")]
|
||||
public string Memo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// isv提供的发放号订单号,由数字和字母组成,最大长度为32为,需要保证每笔发放的唯一性,支付宝会对该参数做唯一性控制。如果使用同样的订单号,支付宝将返回订单号已经存在的错误
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_order_no")]
|
||||
public string MerchantOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 集分宝发放流水状态,I表示处理中,S表示成功,F表示失败
|
||||
/// </summary>
|
||||
[JsonProperty("order_status")]
|
||||
public string OrderStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 发放集分宝的数量
|
||||
/// </summary>
|
||||
[JsonProperty("point_count")]
|
||||
public long PointCount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝集分宝接收者用户ID
|
||||
/// </summary>
|
||||
[JsonProperty("receive_user_id")]
|
||||
public string ReceiveUserId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,82 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayBossCsChannelQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayBossCsChannelQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 平均通话时长
|
||||
/// </summary>
|
||||
[JsonProperty("att")]
|
||||
public string Att { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注
|
||||
/// </summary>
|
||||
[JsonProperty("comment")]
|
||||
public string Comment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 接通率
|
||||
/// </summary>
|
||||
[JsonProperty("connection_rate")]
|
||||
public string ConnectionRate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 通话中人数
|
||||
/// </summary>
|
||||
[JsonProperty("curr_agent_talking")]
|
||||
public string CurrAgentTalking { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 在线小二数
|
||||
/// </summary>
|
||||
[JsonProperty("curr_agents_logged_in")]
|
||||
public string CurrAgentsLoggedIn { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 排队数
|
||||
/// </summary>
|
||||
[JsonProperty("curr_number_waiting_calls")]
|
||||
public string CurrNumberWaitingCalls { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小休人数
|
||||
/// </summary>
|
||||
[JsonProperty("current_not_ready_agents")]
|
||||
public string CurrentNotReadyAgents { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 等待人数
|
||||
/// </summary>
|
||||
[JsonProperty("current_ready_agents")]
|
||||
public string CurrentReadyAgents { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 主键
|
||||
/// </summary>
|
||||
[JsonProperty("row_key")]
|
||||
public string RowKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 流入量
|
||||
/// </summary>
|
||||
[JsonProperty("visitor_inflow")]
|
||||
public string VisitorInflow { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应答量
|
||||
/// </summary>
|
||||
[JsonProperty("visitor_response")]
|
||||
public string VisitorResponse { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 应答量[转接]
|
||||
/// </summary>
|
||||
[JsonProperty("visitor_response_transfer")]
|
||||
public string VisitorResponseTransfer { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayBossProdArrangementOfflineQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayBossProdArrangementOfflineQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 商户的签约状态
|
||||
/// </summary>
|
||||
[JsonProperty("sign_status")]
|
||||
public string SignStatus { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorCityQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorCityQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 城市列表
|
||||
/// </summary>
|
||||
[JsonProperty("citys")]
|
||||
|
||||
public List<CityFunction> Citys { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorDepositCancelResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorDepositCancelResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorDepositConfirmResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorDepositConfirmResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorDepositQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorDepositQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 待圈存明细
|
||||
/// </summary>
|
||||
[JsonProperty("recharge_bills")]
|
||||
|
||||
public List<RechargeBill> RechargeBills { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorFunctionQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorFunctionQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支持的功能列表
|
||||
/// </summary>
|
||||
[JsonProperty("functions")]
|
||||
|
||||
public List<SupportFunction> Functions { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorScriptQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorScriptQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 脚本内容,智能卡中心自定义的脚本格式内容
|
||||
/// </summary>
|
||||
[JsonProperty("content")]
|
||||
public string Content { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 脚本更新时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_modified")]
|
||||
public string GmtModified { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorStationQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorStationQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支持设为起点的站点列表
|
||||
/// </summary>
|
||||
[JsonProperty("support_starts")]
|
||||
|
||||
public List<StationDetailInfo> SupportStarts { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherBatchqueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherBatchqueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 查询到的订单信息列表
|
||||
/// </summary>
|
||||
[JsonProperty("tickets")]
|
||||
|
||||
public List<TicketDetailInfo> Tickets { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherCancelResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherCancelResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherConfirmResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherConfirmResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单金额,元为单位
|
||||
/// </summary>
|
||||
[JsonProperty("amount")]
|
||||
public string Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 终点站
|
||||
/// </summary>
|
||||
[JsonProperty("end_station")]
|
||||
public string EndStation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 终点站点名称
|
||||
/// </summary>
|
||||
[JsonProperty("end_station_name")]
|
||||
public string EndStationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单中包含的票数
|
||||
/// </summary>
|
||||
[JsonProperty("quantity")]
|
||||
public string Quantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起点站
|
||||
/// </summary>
|
||||
[JsonProperty("start_station")]
|
||||
public string StartStation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起始站点名称
|
||||
/// </summary>
|
||||
[JsonProperty("start_station_name")]
|
||||
public string StartStationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该笔订单状态,默认必然是SUCCESS
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 票单价
|
||||
/// </summary>
|
||||
[JsonProperty("ticket_price")]
|
||||
public string TicketPrice { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述票种类
|
||||
/// </summary>
|
||||
[JsonProperty("ticket_type")]
|
||||
public string TicketType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝交易号
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherGenerateResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherGenerateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 核销码过期时间
|
||||
/// </summary>
|
||||
[JsonProperty("expired_date")]
|
||||
public string ExpiredDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地铁购票二维码编码,可自定义
|
||||
/// </summary>
|
||||
[JsonProperty("qr_code_no")]
|
||||
public string QrCodeNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地铁购票的核销码
|
||||
/// </summary>
|
||||
[JsonProperty("ticket_no")]
|
||||
public string TicketNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,70 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 订单金额
|
||||
/// </summary>
|
||||
[JsonProperty("amount")]
|
||||
public string Amount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 终点站
|
||||
/// </summary>
|
||||
[JsonProperty("end_station")]
|
||||
public string EndStation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 终点站点名称
|
||||
/// </summary>
|
||||
[JsonProperty("end_station_name")]
|
||||
public string EndStationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单中包含的票数
|
||||
/// </summary>
|
||||
[JsonProperty("quantity")]
|
||||
public string Quantity { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起点站
|
||||
/// </summary>
|
||||
[JsonProperty("start_station")]
|
||||
public string StartStation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 起始站点名称
|
||||
/// </summary>
|
||||
[JsonProperty("start_station_name")]
|
||||
public string StartStationName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 查询的该笔订单当前状态(SUCCESS、TRANSFER、FAIL等)
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 票单价
|
||||
/// </summary>
|
||||
[JsonProperty("ticket_price")]
|
||||
public string TicketPrice { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 描述票种类
|
||||
/// </summary>
|
||||
[JsonProperty("ticket_type")]
|
||||
public string TicketType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝交易号
|
||||
/// </summary>
|
||||
[JsonProperty("trade_no")]
|
||||
public string TradeNo { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherRefundResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherRefundResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceCityfacilitatorVoucherUploadResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceCityfacilitatorVoucherUploadResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,21 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceDataMonitordataSyncResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceDataMonitordataSyncResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// dimTypeCheck: 维度类型校验 [error]: 错误原因,由错误码,错误描述组成 [operation]:处理措施,如忽略维度,抛弃维度信息 [indicator]: 哪个指标发生的错误
|
||||
/// [source]:错误的地方,如上面写的para,维度类型写错 如果有多个维度校验类型错误,多个错误将组合在一起返回 {dataTypeValueCheck=
|
||||
/// [error]:Data_Type_Value_Invalid,数据或类型不合法 [operation]:忽略数据 [indicator]:当面付成功交易数 [source]:type:String
|
||||
/// value:10 [error]:Data_Type_Value_Invalid,数据或类型不合法 [operation]:忽略数据 [indicator]:当面付成功交易数
|
||||
/// [source]:type:String value:20 [error]:Data_Type_Value_Invalid,数据或类型不合法 [operation]:忽略数据
|
||||
/// [indicator]:当面付成功交易数 [source]:type:String value:30}
|
||||
/// </summary>
|
||||
[JsonProperty("error_detail")]
|
||||
public string ErrorDetail { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceEducateStudentinfoShareResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceEducateStudentinfoShareResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 学生信息
|
||||
/// </summary>
|
||||
[JsonProperty("student_info_share_result")]
|
||||
public EduStudentInfoShareResult StudentInfoShareResult { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceLotteryPresentSendResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceLotteryPresentSendResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 是否赠送成功
|
||||
/// </summary>
|
||||
[JsonProperty("send_result")]
|
||||
public bool SendResult { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceLotteryPresentlistQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceLotteryPresentlistQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 列表内容
|
||||
/// </summary>
|
||||
[JsonProperty("results")]
|
||||
|
||||
public List<LotteryPresent> Results { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 返回的列表的大小
|
||||
/// </summary>
|
||||
[JsonProperty("total_result")]
|
||||
public long TotalResult { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceLotteryTypelistQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceLotteryTypelistQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 彩票系统支持的可用于赠送的彩种类型列表
|
||||
/// </summary>
|
||||
[JsonProperty("results")]
|
||||
|
||||
public List<LotteryType> Results { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 彩票系统支持的可用于赠送的彩种个数
|
||||
/// </summary>
|
||||
[JsonProperty("total_result")]
|
||||
public long TotalResult { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceTransportOfflinepayKeyQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceTransportOfflinepayKeyQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝脱机交易公钥列表。列表中每一项为一个有效的支付宝公钥信息, 其中id字段表示支付宝公钥id。
|
||||
/// </summary>
|
||||
[JsonProperty("keys")]
|
||||
|
||||
public List<AlipayOfflinePayMasterKey> Keys { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceTransportOfflinepayRecordVerifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceTransportOfflinepayRecordVerifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,18 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayCommerceTransportOfflinepayUserblacklistQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayCommerceTransportOfflinepayUserblacklistQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 黑名单用户ID
|
||||
/// </summary>
|
||||
[JsonProperty("black_list")]
|
||||
|
||||
public List<string> BlackList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderCancelResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderCancelResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderConfirmResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderConfirmResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,98 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 到位业务定义的订单买家id,全局唯一,商户可以根据该ID唯一确定买家的信息
|
||||
/// </summary>
|
||||
[JsonProperty("buyer_user_id")]
|
||||
public string BuyerUserId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单创建时间,用户点击预约下单操作的时间,格式为yyyy-MM-dd HH:mm:ss(到秒)下单时间因早于服务预约时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_create")]
|
||||
public string GmtCreate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单修改时间,格式为yyyy-MM-dd HH:mm:ss(到秒,创建订单时,修改时间与创建时间相同)
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_modified")]
|
||||
public string GmtModified { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单最后支付时间,格式:yyyy-MM-dd HH:mm:ss(到秒)
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_payment")]
|
||||
public string GmtPayment { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单最后退款时间,格式:yyyy-MM-dd HH:mm:ss,订单产生退款时的最后操作时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_refund")]
|
||||
public string GmtRefund { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物流信息,用户下订单填写的物流信息,包括服务地址的经纬度、联系人和手机号码以及扩展信息
|
||||
/// </summary>
|
||||
[JsonProperty("logistics_info")]
|
||||
public OrderLogisticsInfo LogisticsInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 备注信息,消费者下单时填写的订单备注信息,长度不超过2000字符
|
||||
/// </summary>
|
||||
[JsonProperty("memo")]
|
||||
public string Memo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 到位业务订单号。用户在到位下单时,由到位系统生成的32位全局唯一数字 id。
|
||||
/// 通过应用中的应用网关post发送给商户(应用网关配置参考链接:https%3A%2F%2Fdoc.open.alipay.com%2Fdocs%2Fdoc.htm%3Fspm%3Da219a.7629140.0.0.TcIuKL%26treeId%3D193%26articleId%3D105310%26docType%3D1)。
|
||||
/// </summary>
|
||||
[JsonProperty("order_no")]
|
||||
public string OrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 到位订单状态枚举值,用于描述订单的业务状态,到位系统定义的枚举值(枚举:WAIT_CONFIRM:待接单;WAIT_ASSIGN_SP:待确认服务者;WAIT_SERVICE:待服务;SERVICE_START:服务者开始服务;CONFIRMED_SERVICE:服务者确认服务完成;SERVICE_COMPLETE:消费者确认服务完成;ORDER_FINISHED:订单正常结束;ORDER_CLOSE:订单中途关闭;
|
||||
/// </summary>
|
||||
[JsonProperty("order_status")]
|
||||
public string OrderStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户下订单后已付款金额,不小于0的数,单位为元,单个订单金额小于10w。
|
||||
/// </summary>
|
||||
[JsonProperty("payment_amount")]
|
||||
public string PaymentAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户下单产生的订单实际金额,不小于0的数,单位为元,单个订单金额小于10w。
|
||||
/// </summary>
|
||||
[JsonProperty("real_amount")]
|
||||
public string RealAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单已退款的金额,单位为元,若订单存在退款,则金额大于0,且小于等于实际支付的金额
|
||||
/// </summary>
|
||||
[JsonProperty("refund_amount")]
|
||||
public string RefundAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务订单列表:包含订单所对应的服务,服务可能包含不止一个,每个服务对应自身的单价、总价、退款价格等
|
||||
/// </summary>
|
||||
[JsonProperty("service_order_list")]
|
||||
|
||||
public List<ServiceOrderInfo> ServiceOrderList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户下单产生的订单总金额,不小于0的数,单位为元,单个订单金额小于10w
|
||||
/// </summary>
|
||||
[JsonProperty("total_amount")]
|
||||
public string TotalAmount { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderRefundResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderRefundResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderRefuseResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderRefuseResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderSpModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderSpModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiOrderTransferResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiOrderTransferResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiServiceModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiServiceModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiServicePriceModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiServicePriceModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiSpModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiSpModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDaoweiSpScheduleModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayDaoweiSpScheduleModifyResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataBillDownloadurlGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataBillDownloadurlGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 账单下载地址链接,获取连接后30秒后未下载,链接地址失效。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_download_url")]
|
||||
public string BillDownloadUrl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,53 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataexchangeSfasdfResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataexchangeSfasdfResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// dsfagshdj
|
||||
/// </summary>
|
||||
[JsonProperty("azxfghd")]
|
||||
|
||||
public List<string> Azxfghd { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// asghdfsdas阿福故事、
|
||||
/// </summary>
|
||||
[JsonProperty("gfdhsdasafg")]
|
||||
|
||||
public List<string> Gfdhsdasafg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// fgdhjdsfgh
|
||||
/// </summary>
|
||||
[JsonProperty("gfhjfdsa")]
|
||||
|
||||
public List<string> Gfhjfdsa { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sdfdhgjfdfsaghjfd
|
||||
/// </summary>
|
||||
[JsonProperty("ghjfdsafgh")]
|
||||
|
||||
public List<string> Ghjfdsafgh { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// sadasff
|
||||
/// </summary>
|
||||
[JsonProperty("sdvsdv")]
|
||||
public string Sdvsdv { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// hysasd
|
||||
/// </summary>
|
||||
[JsonProperty("wrty")]
|
||||
|
||||
public List<AlipayItemGoodsList> Wrty { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceBillDownloadurlQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceBillDownloadurlQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 账单下载地址链接,获取连接后30秒后未下载,链接地址失效。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_download_url")]
|
||||
public string BillDownloadUrl { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceChinaremodelQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceChinaremodelQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 中再核保模型查询结果
|
||||
/// </summary>
|
||||
[JsonProperty("result")]
|
||||
public AlipayChinareModelResult Result { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceCodeRecoResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceCodeRecoResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 识别结果
|
||||
/// </summary>
|
||||
[JsonProperty("result")]
|
||||
public AlipayCodeRecoResult Result { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceSdfsdfResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceSdfsdfResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceShoppingmallrecShopQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceShoppingmallrecShopQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 本次推荐的id, 开发者埋点需带入此参数
|
||||
/// </summary>
|
||||
[JsonProperty("recommend_id")]
|
||||
public string RecommendId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本次请求的全局唯一标识, 支持英文字母和数字, 由开发者自行定义,和入参request_id一致
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 推荐的商铺列表, 有序
|
||||
/// </summary>
|
||||
[JsonProperty("shop_recommend_list")]
|
||||
|
||||
public List<ShopRec> ShopRecommendList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceShoppingmallrecVoucherQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceShoppingmallrecVoucherQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 本次推荐的id, 开发者埋点需带入此参数
|
||||
/// </summary>
|
||||
[JsonProperty("recommend_id")]
|
||||
public string RecommendId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 本次请求的全局唯一标识, 支持英文字母和数字, 由开发者自行定义,和入参request_id一致
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商场券的推荐列表
|
||||
/// </summary>
|
||||
[JsonProperty("voucher_recommend_list")]
|
||||
|
||||
public List<VoucherRec> VoucherRecommendList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,17 @@
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayDataDataserviceUserlevelZrankGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayDataDataserviceUserlevelZrankGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 活跃高价值用户返回
|
||||
/// </summary>
|
||||
[JsonProperty("result")]
|
||||
public AlipayHighValueCustomerResult Result { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,88 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppBillAddResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppBillAddResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝的业务订单号,具有唯一性。
|
||||
/// </summary>
|
||||
[JsonProperty("alipay_order_no")]
|
||||
public string AlipayOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外部订单号,由于对账时回传给外部商户
|
||||
/// </summary>
|
||||
[JsonProperty("bank_bill_no")]
|
||||
public string BankBillNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单的账期,例如201203表示2012年3月的账单。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_date")]
|
||||
public string BillDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单单据号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_key")]
|
||||
public string BillKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝给每个出账机构指定了一个对应的英文短名称来唯一表示该收费单位。
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst")]
|
||||
public string ChargeInst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出账机构中文名称。
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst_name")]
|
||||
public string ChargeInstName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展属性,该属性值现在用于确保只有一个人可以支付成功 用法:多个人对同一笔外部欠费单创建多个账单时,确保该值不变
|
||||
/// </summary>
|
||||
[JsonProperty("extend_field")]
|
||||
public string ExtendField { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 输出机构的业务流水号,需要保证唯一性。
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_order_no")]
|
||||
public string MerchantOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝订单类型。公共事业缴纳JF,信用卡还款HK
|
||||
/// </summary>
|
||||
[JsonProperty("order_type")]
|
||||
public string OrderType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 拥有该账单的用户姓名
|
||||
/// </summary>
|
||||
[JsonProperty("owner_name")]
|
||||
public string OwnerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 缴费金额。用户支付的总金额。单位为:RMB Yuan。取值范围为[0.01,100000000.00],精确到小数点后两位。
|
||||
/// </summary>
|
||||
[JsonProperty("pay_amount")]
|
||||
public string PayAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单的服务费
|
||||
/// </summary>
|
||||
[JsonProperty("service_amount")]
|
||||
public string ServiceAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 子业务类型是业务类型的下一级概念,例如:WATER表示JF下面的水费,ELECTRIC表示JF下面的电费,GAS表示JF下面的燃气费。
|
||||
/// </summary>
|
||||
[JsonProperty("sub_order_type")]
|
||||
public string SubOrderType { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,100 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppBillGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppBillGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝的业务订单号,具有唯一性。
|
||||
/// </summary>
|
||||
[JsonProperty("alipay_order_no")]
|
||||
public string AlipayOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单的账期,例如201203表示2012年3月的账单。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_date")]
|
||||
public string BillDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单单据号,例如水费单号,手机号,电费号,信用卡卡号。没有唯一性要求。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_key")]
|
||||
public string BillKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝给每个出账机构指定了一个对应的英文短名称来唯一表示该收费单位。
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst")]
|
||||
public string ChargeInst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出账机构中文名称。
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst_name")]
|
||||
public string ChargeInstName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 输出机构的业务流水号,需要保证唯一性。
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_order_no")]
|
||||
public string MerchantOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单的状态。 INIT:等待付款,SUCCESS:成功,FAILED:失败。
|
||||
/// </summary>
|
||||
[JsonProperty("order_status")]
|
||||
public string OrderStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝订单类型。公共事业缴纳JF,信用卡还款HK
|
||||
/// </summary>
|
||||
[JsonProperty("order_type")]
|
||||
public string OrderType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 拥有该账单的用户姓名
|
||||
/// </summary>
|
||||
[JsonProperty("owner_name")]
|
||||
public string OwnerName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 缴费金额。用户支付的总金额。单位为:RMB Yuan。取值范围为[0.01,100000000.00],精确到小数点后两位。
|
||||
/// </summary>
|
||||
[JsonProperty("pay_amount")]
|
||||
public string PayAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 付款时间
|
||||
/// </summary>
|
||||
[JsonProperty("pay_time")]
|
||||
public string PayTime { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 账单的服务费
|
||||
/// </summary>
|
||||
[JsonProperty("service_amount")]
|
||||
public string ServiceAmount { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 子业务类型是业务类型的下一级概念,例如:WATER表示JF下面的水费,ELECTRIC表示JF下面的电费,GAS表示JF下面的燃气费。
|
||||
/// </summary>
|
||||
[JsonProperty("sub_order_type")]
|
||||
public string SubOrderType { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 交通违章地点,sub_order_type=TRAFFIC时有值
|
||||
/// </summary>
|
||||
[JsonProperty("traffic_location")]
|
||||
public string TrafficLocation { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 违章行为,sub_order_type=TRAFFIC时有值。
|
||||
/// </summary>
|
||||
[JsonProperty("traffic_regulations")]
|
||||
public string TrafficRegulations { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppBillSearchResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppBillSearchResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 已经缓存的的key
|
||||
/// </summary>
|
||||
[JsonProperty("cachekey")]
|
||||
public string Cachekey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 实时查询欠费单返回对象
|
||||
/// </summary>
|
||||
[JsonProperty("inst_bill_info_list")]
|
||||
|
||||
public List<QueryInstBillInfo> InstBillInfoList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppInvoiceTitleListGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppInvoiceTitleListGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 抬头列表
|
||||
/// </summary>
|
||||
[JsonProperty("title_list")]
|
||||
|
||||
public List<InvoiceTitleModel> TitleList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppMerchantConfigGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppMerchantConfigGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 商户机构配置信息
|
||||
/// </summary>
|
||||
[JsonProperty("inst_configs")]
|
||||
|
||||
public List<MerchantInstConfig> InstConfigs { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户的用户ID
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_user_id")]
|
||||
public string MerchantUserId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductBillPayStatusResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductBillPayStatusResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝协议流水
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_id")]
|
||||
public string AgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝流billNo
|
||||
/// </summary>
|
||||
[JsonProperty("order_no")]
|
||||
public string OrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单的结果码
|
||||
/// </summary>
|
||||
[JsonProperty("order_result_code")]
|
||||
public string OrderResultCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单的结果描述
|
||||
/// </summary>
|
||||
[JsonProperty("order_result_msg")]
|
||||
public string OrderResultMsg { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 外部订单流水
|
||||
/// </summary>
|
||||
[JsonProperty("out_order_no")]
|
||||
public string OutOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝订单支付状态。 0:未知状态。 1:支付成功。 2:支付失败。
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,40 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductPayResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductPayResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝代扣协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_id")]
|
||||
public string AgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝订单流水号
|
||||
/// </summary>
|
||||
[JsonProperty("bill_no")]
|
||||
public string BillNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展参数
|
||||
/// </summary>
|
||||
[JsonProperty("extend_field")]
|
||||
public string ExtendField { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户代扣业务流水
|
||||
/// </summary>
|
||||
[JsonProperty("out_order_no")]
|
||||
public string OutOrderNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 订单支付状态。 0:未知 1:成功 2:失败
|
||||
/// </summary>
|
||||
[JsonProperty("result_status")]
|
||||
public string ResultStatus { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,54 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductSignAddResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductSignAddResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝代扣协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_id")]
|
||||
public string AgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝协议状态。签约成功则返回success
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_status")]
|
||||
public string AgreementStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 扩展参数,可为空
|
||||
/// </summary>
|
||||
[JsonProperty("extend_field")]
|
||||
public string ExtendField { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 通知方式设置。
|
||||
/// </summary>
|
||||
[JsonProperty("notify_config")]
|
||||
public string NotifyConfig { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户生成的代扣协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("out_agreement_id")]
|
||||
public string OutAgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付方式设置
|
||||
/// </summary>
|
||||
[JsonProperty("pay_config")]
|
||||
|
||||
public List<string> PayConfig { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 签约时间
|
||||
/// </summary>
|
||||
[JsonProperty("sign_date")]
|
||||
public string SignDate { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductSignCancelResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductSignCancelResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝代扣协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_id")]
|
||||
public string AgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 支付宝协议状态。解约成功则返回success
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_status")]
|
||||
public string AgreementStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 商户代扣协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("out_agreement_id")]
|
||||
public string OutAgreementId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,46 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductSignQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductSignQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("agreement_id")]
|
||||
public string AgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 户号
|
||||
/// </summary>
|
||||
[JsonProperty("bill_key")]
|
||||
public string BillKey { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 出账机构
|
||||
/// </summary>
|
||||
[JsonProperty("charge_inst")]
|
||||
public string ChargeInst { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 朗新协议ID
|
||||
/// </summary>
|
||||
[JsonProperty("out_agreement_id")]
|
||||
public string OutAgreementId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 签约时间
|
||||
/// </summary>
|
||||
[JsonProperty("sign_date")]
|
||||
public string SignDate { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 用户ID
|
||||
/// </summary>
|
||||
[JsonProperty("user_id")]
|
||||
public string UserId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEbppPdeductSignValidateResponse.
|
||||
/// </summary>
|
||||
public class AlipayEbppPdeductSignValidateResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,23 @@
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodCreditGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodCreditGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 授信结果
|
||||
/// </summary>
|
||||
[JsonProperty("credit_result")]
|
||||
public CreditResult CreditResult { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 为了保持幂等性,返回唯一请求号
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDataPutResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDataPutResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 数据版本
|
||||
/// </summary>
|
||||
[JsonProperty("data_version")]
|
||||
public string DataVersion { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnContractGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnContractGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 合同的内容文本 String 合同的内容文本,为HTML格式
|
||||
/// </summary>
|
||||
[JsonProperty("contract_content")]
|
||||
public string ContractContent { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 合同编号
|
||||
/// </summary>
|
||||
[JsonProperty("contract_no")]
|
||||
public string ContractNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一标识这次请求
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnDrawndnlistQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnDrawndnlistQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支用列表
|
||||
/// </summary>
|
||||
[JsonProperty("drawndn_list")]
|
||||
|
||||
public List<DrawndnVo> DrawndnList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一一次请求标示
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnFeerecordQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnFeerecordQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 费用交易流水
|
||||
/// </summary>
|
||||
[JsonProperty("fee_records")]
|
||||
|
||||
public List<FeeRecords> FeeRecords { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一标识这次请求
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnLendingrecordQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnLendingrecordQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 放款流水
|
||||
/// </summary>
|
||||
[JsonProperty("lending_records")]
|
||||
|
||||
public List<LendingRecords> LendingRecords { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 代表一次请求的唯一编号,用于追溯问题,多方联调查询问题时,ISV 可以提供该RequestId给网关,网关用来查询本次请求的具体日志
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnPaymentscheduleGetResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnPaymentscheduleGetResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 返回的支用还款计划集合
|
||||
/// </summary>
|
||||
[JsonProperty("payment_schedules")]
|
||||
|
||||
public List<PaymentSchedule> PaymentSchedules { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一标识这次请求
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcapiprodDrawndnRepaymentrecordQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcapiprodDrawndnRepaymentrecordQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 还款流水
|
||||
/// </summary>
|
||||
[JsonProperty("repayment_records")]
|
||||
|
||||
public List<RepaymentRecords> RepaymentRecords { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 唯一标识这次请求
|
||||
/// </summary>
|
||||
[JsonProperty("request_id")]
|
||||
public string RequestId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,28 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcardEduPublicBindResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcardEduPublicBindResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 机构编码
|
||||
/// </summary>
|
||||
[JsonProperty("agent_code")]
|
||||
public string AgentCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 卡号
|
||||
/// </summary>
|
||||
[JsonProperty("card_no")]
|
||||
public string CardNo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 成功
|
||||
/// </summary>
|
||||
[JsonProperty("return_code")]
|
||||
public string ReturnCode { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,30 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBasicserviceInitializeResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBasicserviceInitializeResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 若初始化的服务类型为物业缴费账单上传模式,并且对应的物业账号事前未完成对支付宝平台代创建缴费交易的授权,接口除了返回对应错误码,会通过本参数返回授权URL。请开发者发给物业人员用对应的物业支付宝账号登录完成第三方授权。
|
||||
/// </summary>
|
||||
[JsonProperty("bill_pay_auth_url")]
|
||||
public string BillPayAuthUrl { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 服务初始化成功后,若从当前状态到下一状态需要完成下一步条件代码,则返回该字段,否则不返回。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR - 平台审核方
|
||||
/// 条件代码包括但不限于: WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测 WAIT_ONLINE_APPLICATION -
|
||||
/// 等待提起上线申请(目前支持开发者调用alipay.eco.cplife.basicservice.modify接口发起上线申请) WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING - 等待审核
|
||||
/// </summary>
|
||||
[JsonProperty("next_action")]
|
||||
public string NextAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若服务成功初始化,则返回当前状态。 服务初始化后默认为下线状态,需要完成开发和验证,并提交服务上线申请。由支付宝小二审核通过后完成服务和小区上线。
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBasicserviceModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBasicserviceModifyResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 服务变更成功后,若从当前状态到下一状态需要完成下一步条件代码,则返回该字段,否则不返回。 格式为“条件代码|操作主体”。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR -
|
||||
/// 平台审核方 条件代码包括但不限于: WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测
|
||||
/// WAIT_ONLINE_APPLICATION - 等待提起上线申请(目前支持开发者调用alipay.eco.cplife.basicservice.modify接口发起上线申请) WAIT_AUTH_TO_PLATFORM -
|
||||
/// 等待物业授权给支付宝社区平台 WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING - 等待审核
|
||||
/// </summary>
|
||||
[JsonProperty("next_action")]
|
||||
public string NextAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若服务成功变更,则返回当前状态。
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBillBatchUploadResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBillBatchUploadResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 成功导入所有条目集合中的条目,则回传请求中的批次号
|
||||
/// </summary>
|
||||
[JsonProperty("batch_id")]
|
||||
public string BatchId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBillBatchqueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBillBatchqueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 若查询到符合条件的账单条目,返回结果集
|
||||
/// </summary>
|
||||
[JsonProperty("bill_result_set")]
|
||||
|
||||
public List<CPBillResultSet> BillResultSet { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前页码
|
||||
/// </summary>
|
||||
[JsonProperty("current_page_num")]
|
||||
public long CurrentPageNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 符合条件的总结果数
|
||||
/// </summary>
|
||||
[JsonProperty("total_bill_count")]
|
||||
public long TotalBillCount { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBillDeleteResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBillDeleteResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 不允许删除(支付中或者支付完成)的账单明细条目列表
|
||||
/// </summary>
|
||||
[JsonProperty("alive_bill_entry_list")]
|
||||
|
||||
public List<CPAliveBillEntrySet> AliveBillEntryList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBillModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBillModifyResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 不允许修改(支付中或者支付完成)的账单明细条目列表
|
||||
/// </summary>
|
||||
[JsonProperty("alive_bill_entry_list")]
|
||||
|
||||
public List<CPAliveBillEntrySet> AliveBillEntryList { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeBillSyncResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeBillSyncResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,31 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeCommunityBatchqueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeCommunityBatchqueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 若查询到符合条件的小区,返回物业小区摘要信息列表
|
||||
/// </summary>
|
||||
[JsonProperty("community_list")]
|
||||
|
||||
public List<CPCommunitySet> CommunityList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 当前页码
|
||||
/// </summary>
|
||||
[JsonProperty("current_page_num")]
|
||||
public long CurrentPageNum { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 开发者帮助物业创建成功并符合查询条件的小区总数。 若不传入app_auth_token参数,则返回开发者代创建成功的所有小区总数。 若传入app_auth_token参数,则返回对应开发者帮助该授权物业公司创建成功的小区总数。
|
||||
/// </summary>
|
||||
[JsonProperty("total_community_count")]
|
||||
public long TotalCommunityCount { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,32 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeCommunityCreateResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeCommunityCreateResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 若小区创建成功,则返回支付宝社区物业平台中的小区统一编号。
|
||||
/// </summary>
|
||||
[JsonProperty("community_id")]
|
||||
public string CommunityId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区创建成功后,若从当前状态到下一状态需要完成下一步条件代码。则返回该字段,否则不返回。 格式为“条件代码|操作主体”。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR -
|
||||
/// 平台审核方 条件代码包括但不限于: WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测
|
||||
/// WAIT_ONLINE_APPLICATION - 等待提起上线申请 WAIT_OFFLINE_APPLICATION - 等待提起下线申请 WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING
|
||||
/// - 等待审核
|
||||
/// </summary>
|
||||
[JsonProperty("next_action")]
|
||||
public string NextAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若小区创建成功,则返回当前状态,状态值: PENDING_ONLINE 待上线 ONLINE - 上线 MAINTAIN - 维护中 OFFLINE - 下线
|
||||
/// 新创建的小区为PENDING_ONLINE待上线状态,需要尽快初始化基础服务,完成开发和验证,并提交服务上线申请。由支付宝小二审核通过后完成服务和小区上线。
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,132 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeCommunityDetailsQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeCommunityDetailsQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 开发者关联的高德地图中住宅、住宿或地名地址等小区相关类型的POI(地图兴趣点)ID列表和POI名称,中间用"|"分隔。
|
||||
/// </summary>
|
||||
[JsonProperty("associated_pois")]
|
||||
|
||||
public List<string> AssociatedPois { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区审核状态,小区审核状态关联小区主服务的审核状态: AUDITING:审核中; AUDIT_FAILED:审核驳回; AUDIT_SUCCESS:审核通过。
|
||||
/// </summary>
|
||||
[JsonProperty("audit_status")]
|
||||
public string AuditStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 地级市编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
|
||||
/// </summary>
|
||||
[JsonProperty("city_code")]
|
||||
public string CityCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区主要详细地址,不需要包含省市区名称。
|
||||
/// </summary>
|
||||
[JsonProperty("community_address")]
|
||||
public string CommunityAddress { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区所在的经纬度列表(注:需要是高德坐标系),每对经纬度用"|"分隔,经度在前,纬度在后。 注:若新建的小区覆盖多个片区,最多包含5组经纬度,其中第一组作为主经纬度。
|
||||
/// </summary>
|
||||
[JsonProperty("community_locations")]
|
||||
|
||||
public List<string> CommunityLocations { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区名称。
|
||||
/// </summary>
|
||||
[JsonProperty("community_name")]
|
||||
public string CommunityName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区已初始化的服务列表
|
||||
/// </summary>
|
||||
[JsonProperty("community_services")]
|
||||
|
||||
public List<CPCommServices> CommunityServices { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区当前状态,状态值: PENDING_ONLINE 待上线 ONLINE - 上线 MAINTAIN - 维护中 OFFLINE - 下线
|
||||
/// 新创建的小区为PENDING_ONLINE待上线状态,需要尽快初始化基础服务,完成开发和验证,并提交服务上线申请。由支付宝小二审核通过后完成服务和小区上线。
|
||||
/// </summary>
|
||||
[JsonProperty("community_status")]
|
||||
public string CommunityStatus { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 区县编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
|
||||
/// </summary>
|
||||
[JsonProperty("district_code")]
|
||||
public string DistrictCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区创建时间
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_created")]
|
||||
public string GmtCreated { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区最近修改时间(包括状态变更)。
|
||||
/// </summary>
|
||||
[JsonProperty("gmt_modified")]
|
||||
public string GmtModified { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 物业服务热线或联系电话,便于用户在需要时联系物业。
|
||||
/// </summary>
|
||||
[JsonProperty("hotline")]
|
||||
public string Hotline { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若开发者和支付宝签署了相关协议,会返回开发者的PID(Partner ID)。
|
||||
/// </summary>
|
||||
[JsonProperty("isv_pid")]
|
||||
public string IsvPid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区关联的物业公司名称
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_firm_name")]
|
||||
public string MerchantFirmName { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区对应的物业公司支付宝账号PID(合作伙伴partner id)。
|
||||
/// </summary>
|
||||
[JsonProperty("merchant_pid")]
|
||||
public string MerchantPid { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若从小区当前状态到下一状态需要完成下一步条件代码,则返回该字段,否则不返回。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR - 平台审核方 条件代码包括但不限于:
|
||||
/// WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测 WAIT_ONLINE_APPLICATION - 等待提起上线申请
|
||||
/// WAIT_OFFLINE_APPLICATION - 等待提起下线申请 WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING - 等待审核
|
||||
/// </summary>
|
||||
[JsonProperty("next_action")]
|
||||
public string NextAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 小区在物业系统中的唯一编号,若开发者传入过,则返回。
|
||||
/// </summary>
|
||||
[JsonProperty("out_community_id")]
|
||||
public string OutCommunityId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 省份编码,国标码,详见国家统计局数据 <a href="http://aopsdkdownload.cn-hangzhou.alipay-pub.aliyun-inc.com/doc/2016.xls">点此下载</a>。
|
||||
/// </summary>
|
||||
[JsonProperty("province_code")]
|
||||
public string ProvinceCode { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若小区上线后,返回小区主页推广二维码图片链接
|
||||
/// </summary>
|
||||
[JsonProperty("qr_code_image")]
|
||||
public string QrCodeImage { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeCommunityModifyResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeCommunityModifyResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 小区变更成功后,若从当前状态到下一状态需要完成下一步条件代码。则返回该字段,否则不返回。 格式为“条件代码|操作主体”。 操作主体有: INVOKER - 接口调用方 MERCHANT - 物业公司 AUDITOR -
|
||||
/// 平台审核方 条件代码包括但不限于: WAIT_SERVICE_PROVISION - 等待基础服务初始化 WAIT_PROD_VERIFICATION - 等待在生产环境通过自测
|
||||
/// WAIT_ONLINE_APPLICATION - 等待提起上线申请 WAIT_OFFLINE_APPLICATION - 等待提起下线申请 WAIT_CONFIRMATION - 等待相关方确认 WAIT_AUDITING
|
||||
/// - 等待审核
|
||||
/// </summary>
|
||||
[JsonProperty("next_action")]
|
||||
public string NextAction { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 若小区信息变更成功,则返回当前状态。
|
||||
/// </summary>
|
||||
[JsonProperty("status")]
|
||||
public string Status { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeNoticeDeleteResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeNoticeDeleteResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,16 @@
|
||||
using Newtonsoft.Json;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeNoticePublishResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeNoticePublishResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 支付宝平台统一生产的通知公告唯一ID标示.
|
||||
/// </summary>
|
||||
[JsonProperty("notice_id")]
|
||||
public string NoticeId { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeRepairStatusUpdateResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeRepairStatusUpdateResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeResidentinfoDeleteResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeResidentinfoDeleteResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeResidentinfoUploadResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeResidentinfoUploadResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeRoominfoDeleteResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeRoominfoDeleteResponse : AopResponse
|
||||
{
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeRoominfoQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeRoominfoQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 符合条件的小区房屋信息列表.
|
||||
/// </summary>
|
||||
[JsonProperty("room_info")]
|
||||
|
||||
public List<CplifeRoomDetail> RoomInfo { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 该小区下已上传的房间总数
|
||||
/// </summary>
|
||||
[JsonProperty("total_room_number")]
|
||||
public long TotalRoomNumber { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,25 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeRoominfoUploadResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeRoominfoUploadResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 业主所在物业小区ID(支付宝平台唯一小区ID标示)
|
||||
/// </summary>
|
||||
[JsonProperty("community_id")]
|
||||
public string CommunityId { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 已经成功上传的房屋信息列表.
|
||||
/// </summary>
|
||||
[JsonProperty("room_info_set")]
|
||||
|
||||
public List<CplifeRoomInfoResp> RoomInfoSet { get; set; }
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,19 @@
|
||||
using System.Collections.Generic;
|
||||
using Newtonsoft.Json;
|
||||
using Alipay.AopSdk.Core.Domain;
|
||||
|
||||
namespace Alipay.AopSdk.Core.Response
|
||||
{
|
||||
/// <summary>
|
||||
/// AlipayEcoCplifeRooominfoQueryResponse.
|
||||
/// </summary>
|
||||
public class AlipayEcoCplifeRooominfoQueryResponse : AopResponse
|
||||
{
|
||||
/// <summary>
|
||||
/// 符合条件的小区房屋信息列表.
|
||||
/// </summary>
|
||||
[JsonProperty("room_info")]
|
||||
|
||||
public List<CplifeRoomDetail> RoomInfo { get; set; }
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user