NewGaoKaoApi/PaymentSDK/AliPay/Domain/ZhimaMerchantDataUploadInit...

25 lines
847 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>
/// ZhimaMerchantDataUploadInitializeModel Data Structure.
/// </summary>
[Serializable]
public class ZhimaMerchantDataUploadInitializeModel : AopObject
{
/// <summary>
/// 芝麻平台服务商模式下的二级商户标识,如果是直连商户调用该接口,不需要设置
/// </summary>
[XmlElement("linked_merchant_id")]
public string LinkedMerchantId { get; set; }
/// <summary>
/// 数据应用的场景编码,场景码和场景名称(数字或字符串为场景码)如下: 8数据反馈 32骑行 CAR_RENTING租车行业解决方案
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}