NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantContractOfferM...

67 lines
2.0 KiB
C#
Raw 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>
/// ZhimaMerchantContractOfferModifyModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantContractOfferModifyModel : AopObject
{
/// <summary>
/// 约定内容描述
/// </summary>
[XmlElement("contract_content")]
public string ContractContent { get; set; }
/// <summary>
/// 合约主体描述,用于呈现支付端内约定详情中的主体描述
/// </summary>
[XmlElement("contract_principal_desc")]
public string ContractPrincipalDesc { get; set; }
/// <summary>
/// 合约主体图片链接
/// </summary>
[XmlElement("contract_principal_logo")]
public string ContractPrincipalLogo { get; set; }
/// <summary>
/// 去履约完成时点击的链接地址
/// </summary>
[XmlElement("fufilment_callback_url")]
public string FufilmentCallbackUrl { get; set; }
/// <summary>
/// 履约需要完成的事项描述
/// </summary>
[XmlElement("fufilment_desc")]
public string FufilmentDesc { get; set; }
/// <summary>
/// 发约创建者主体id(商户pid/用户芝麻id/支付宝用户id/淘宝用户id)
/// </summary>
[XmlElement("offer_creater_id")]
public string OfferCreaterId { get; set; }
/// <summary>
/// 发约创建者类型: MERCHANT:商户 ZHIMA_ROLE:芝麻用户 ALIPAY_ROLE:支付宝用户 TAOBAO_ROLE:淘宝用户
/// </summary>
[XmlElement("offer_creater_type")]
public string OfferCreaterType { get; set; }
/// <summary>
/// 发约单号
/// </summary>
[XmlElement("offer_no")]
public string OfferNo { get; set; }
/// <summary>
/// 信用服务id需要与芝麻技术确定此值
/// </summary>
[XmlElement("service_id")]
public string ServiceId { get; set; }
}
}