NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenAgentCreateModel.cs

31 lines
1004 B
C#
Raw Permalink Blame History

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.Domain
{
/// <summary>
/// AlipayOpenAgentCreateModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenAgentCreateModel : AopObject
{
/// <summary>
/// isv代操作的商户账号可以是支付宝账号也可以是pid2088开头
/// </summary>
[XmlElement("account")]
public string Account { get; set; }
/// <summary>
/// 商户联系人信息,包含联系人名称、手机、邮箱信息。联系人信息将用于接受签约后的重要通知,如确认协议、到期提醒等。
/// </summary>
[XmlElement("contact_info")]
public ContactModel ContactInfo { get; set; }
/// <summary>
/// 订单授权凭证,填写都则对应事务提交进入预授权模式
/// </summary>
[XmlElement("order_ticket")]
public string OrderTicket { get; set; }
}
}