using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ReceiptQuoteInfo Data Structure. /// [Serializable] public class ReceiptQuoteInfo : AopObject { /// /// The base currency /// [XmlElement("base_currency")] public string BaseCurrency { get; set; } /// /// a currency pair is the quotation of the relative value of a currency unit against the unit of another currency. /// [XmlElement("base_currency_unit")] public string BaseCurrencyUnit { get; set; } /// /// the time of this quote to be unavaible /// [XmlElement("expiry_time")] public string ExpiryTime { get; set; } /// /// fxRate /// [XmlElement("fx_rate")] public string FxRate { get; set; } /// /// quoteId /// [XmlElement("quote_id")] public string QuoteId { get; set; } /// /// sourceCurrency /// [XmlElement("source_currency")] public string SourceCurrency { get; set; } /// /// the startTime this quote to be available. /// [XmlElement("start_time")] public string StartTime { get; set; } /// /// targetCurrency /// [XmlElement("target_currency")] public string TargetCurrency { get; set; } } }