NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayEcoMycarImageUploadMo...

31 lines
1.1 KiB
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>
/// AlipayEcoMycarImageUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarImageUploadModel : AopObject
{
/// <summary>
/// 文件内容(图片字节数组做Base64转换后的字符串)
/// </summary>
[XmlElement("img_content")]
public string ImgContent { get; set; }
/// <summary>
/// 图片格式枚举png、jpg、gif
/// </summary>
[XmlElement("img_type")]
public string ImgType { get; set; }
/// <summary>
/// 场景类型 枚举: 洗车保养小图 MAINTAIN_PIC_S 洗车保养大图 : MAINTAIN_PIC_L 车型 : CAR_TYPE 加油 : OIL 默认: DEFAULTscene_type 为空时为默认) 根据类型场景校验大小BASE64之前的大小超过返回错误。 洗车保养小图最大60K 洗车保养大图最大100K 车型最大1M 加油最大1M 默认 100K
/// </summary>
[XmlElement("scene_type")]
public string SceneType { get; set; }
}
}