NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayIserviceCognitiveOcrV...

25 lines
732 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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