using System;
using System.Xml.Serialization;
namespace Aop.Api.Domain
{
///
/// FsServiceDynamicInfo Data Structure.
///
[Serializable]
public class FsServiceDynamicInfo : AopObject
{
///
/// 内容键 subjectData:主体数据
///
[XmlElement("content_key")]
public string ContentKey { get; set; }
///
/// 数据类型; YIELD_TYPE:收益率,SUM:累计次数,CHANGE:涨跌幅,PRICE:价格,GOLD_PRICE:黄金价格,PROBABILITY:概率
///
[XmlElement("content_type")]
public string ContentType { get; set; }
///
/// 内容值
///
[XmlElement("content_value")]
public string ContentValue { get; set; }
///
/// 终止有效期(含)
///
[XmlElement("end_valid_date")]
public string EndValidDate { get; set; }
///
/// 数据其实有效期(含)
///
[XmlElement("start_valid_date")]
public string StartValidDate { get; set; }
}
}