NewGaoKaoApi/PaymentSDK/AliPay/Domain/FsServiceDynamicInfo.cs

43 lines
1.2 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>
/// FsServiceDynamicInfo Data Structure.
/// </summary>
[Serializable]
public class FsServiceDynamicInfo : AopObject
{
/// <summary>
/// 内容键 subjectData主体数据
/// </summary>
[XmlElement("content_key")]
public string ContentKey { get; set; }
/// <summary>
/// 数据类型; YIELD_TYPE收益率SUM累计次数CHANGE涨跌幅PRICE价格GOLD_PRICE黄金价格PROBABILITY概率
/// </summary>
[XmlElement("content_type")]
public string ContentType { get; set; }
/// <summary>
/// 内容值
/// </summary>
[XmlElement("content_value")]
public string ContentValue { get; set; }
/// <summary>
/// 终止有效期(含)
/// </summary>
[XmlElement("end_valid_date")]
public string EndValidDate { get; set; }
/// <summary>
/// 数据其实有效期(含)
/// </summary>
[XmlElement("start_valid_date")]
public string StartValidDate { get; set; }
}
}