You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
1.6 KiB
C#

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

using System;
using System.Xml.Serialization;
namespace Aop.Api.Response
{
/// <summary>
/// AlipayFundAuthOrderVoucherCreateResponse.
/// </summary>
public class AlipayFundAuthOrderVoucherCreateResponse : AopResponse
{
/// <summary>
/// 码类型,分为 barCode条形码 (一维码) 和 qrCode:二维码(qrCode) 目前发码只支持 qrCode
/// </summary>
[XmlElement("code_type")]
public string CodeType { get; set; }
/// <summary>
/// 生成的带有支付宝logo的二维码地址http://mobilecodec.alipay.com/show.htm?code=aeparsv2dknkqf3018556a商户端通过在末尾追加picSize来指定要显示的图片大小如 显示1280大小的URL:http://mobilecodec.alipay.com/show.htm?code=aeparsv2dknkqf3018556a&picSize=1280目前支持的大小有256, 227, 270, 344, 430, 512, 570, 860, 1280, 1546
/// </summary>
[XmlElement("code_url")]
public string CodeUrl { get; set; }
/// <summary>
/// 当前发码请求生成的二维码码串,商户端可以利用二维码生成工具根据该码串值生成对应的二维码
/// </summary>
[XmlElement("code_value")]
public string CodeValue { get; set; }
/// <summary>
/// 商户的授权资金订单号
/// </summary>
[XmlElement("out_order_no")]
public string OutOrderNo { get; set; }
/// <summary>
/// 商户本次资金操作的请求流水号
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
}
}