using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayOpenPublicQrcodeCreateModel Data Structure. /// [Serializable] public class AlipayOpenPublicQrcodeCreateModel : AopObject { /// /// 服务窗创建带参二维码接口,开发者自定义信息 /// [XmlElement("code_info")] public CodeInfo CodeInfo { get; set; } /// /// 二维码类型,目前只支持两种类型: TEMP:临时的(默认); PERM:永久的 /// [XmlElement("code_type")] public string CodeType { get; set; } /// /// 临时码过期时间,以秒为单位,最大不超过1800秒; 永久码置空 /// [XmlElement("expire_second")] public string ExpireSecond { get; set; } /// /// 二维码中间是否显示服务窗logo,Y:显示;N:不显示(默认) /// [XmlElement("show_logo")] public string ShowLogo { get; set; } } }