NewGaoKaoApi/PaymentSDK/AliPay/Domain/KoubeiMarketingDataSceneTra...

43 lines
1.1 KiB
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>
/// KoubeiMarketingDataSceneTravelGetModel Data Structure.
/// </summary>
[Serializable]
public class KoubeiMarketingDataSceneTravelGetModel : AopObject
{
/// <summary>
/// 出行营销场景业务参数
/// </summary>
[XmlElement("biz_info")]
public TravelScene BizInfo { get; set; }
/// <summary>
/// 扩展信息
/// </summary>
[XmlElement("ext_info")]
public string ExtInfo { get; set; }
/// <summary>
/// 代表了一次请求,作为业务幂等性控制
/// </summary>
[XmlElement("out_request_no")]
public string OutRequestNo { get; set; }
/// <summary>
/// 场景类型固定值TRAVEL
/// </summary>
[XmlElement("scene_type")]
public string SceneType { get; set; }
/// <summary>
/// 支付宝用户的userId
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}