using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// AlipayAccountExratePricingNotifyModel Data Structure.
///
[Serializable]
public class AlipayAccountExratePricingNotifyModel : AopObject
{
///
/// 标识该汇率提供给哪个客户使用
///
[JsonProperty("client_id")]
public string ClientId { get; set; }
///
/// 源汇率机构
///
[JsonProperty("inst")]
public string Inst { get; set; }
///
/// 源汇率数据
///
[JsonProperty("pricing_list")]
public List PricingList { get; set; }
///
/// 该汇率的使用场景
///
[JsonProperty("segment_id")]
public string SegmentId { get; set; }
///
/// 所在时区,所有的时间都是该时区的时间 支持 GMT+8 UTC+0 Europe/London 的格式
///
[JsonProperty("time_zone")]
public string TimeZone { get; set; }
}
}