using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// AlipayIserviceCognitiveOcrVehicledashboardQueryModel Data Structure. /// [Serializable] public class AlipayIserviceCognitiveOcrVehicledashboardQueryModel : AopObject { /// /// 自定义场景字段,通过biz_name明确是那个场景,仪表板写死为 dashboard /// [XmlElement("biz_name")] public string BizName { get; set; } /// /// 仪表盘图片base64编码后内容,大小限制在1.5M /// [XmlElement("image_content")] public string ImageContent { get; set; } } }