NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayFinanceQuotationStock...

31 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>
/// AlipayFinanceQuotationStocktoolsFreeuserExchangeModel Data Structure.
/// </summary>
[Serializable]
public class AlipayFinanceQuotationStocktoolsFreeuserExchangeModel : AopObject
{
/// <summary>
/// 股票工具供应商机构的配置ID通常是XXZQXX证券具体值待定。用途1.确定购买的产品的供应商用户购买的工具一定是属于某一家供应商的。2.来源有效性校验。对应的PID与inst_org_id要能一一对应。
/// </summary>
[XmlElement("inst_org_id")]
public string InstOrgId { get; set; }
/// <summary>
/// 股票工具的类型。每个机构提供的工具会有特定的类型名称。查询时也需要提供类型才可定位到用户是否已经订阅。
/// </summary>
[XmlElement("tool_type")]
public string ToolType { get; set; }
/// <summary>
/// 蚂蚁统一会员ID
/// </summary>
[XmlElement("user_id")]
public string UserId { get; set; }
}
}