using System;
using System.Xml.Serialization;
namespace Top.Api.Security
{
    public class TopSecretGetResponse : TopResponse
    {
        /// 
        /// 秘钥值
        /// 
        [XmlElement("secret")]
        public string Secret { get; set; }
        /// 
        /// 秘钥版本号
        /// 
        [XmlElement("secret_version")]
        public long SecretVersion { get; set; }
        /// 
        /// 下次更新秘钥间隔,单位(秒)
        /// 
        [XmlElement("interval")]
        public long Interval { get; set; }
        /// 
        /// 最长有效期,容灾使用,单位(秒)
        /// 
        [XmlElement("max_interval")]
        public long MaxInterval { get; set; }
        /// 
        /// App配置信息
        /// 
        [XmlElement("app_config")]
        public string AppConfig { get; set; }
    }
}