Files
juipnet/Infrastructure/ServiceClient/Alipay.AopSdk.Core/Domain/AlipayEcoMycarImageUploadModel.cs
wanyongkang d318014316 初始提交
2020-10-07 20:25:03 +08:00

31 lines
1.0 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
/// <summary>
/// AlipayEcoMycarImageUploadModel Data Structure.
/// </summary>
[Serializable]
public class AlipayEcoMycarImageUploadModel : AopObject
{
/// <summary>
/// 文件内容(图片字节数组做Base64转换后的字符串)
/// </summary>
[JsonProperty("img_content")]
public string ImgContent { get; set; }
/// <summary>
/// 图片格式枚举png、jpg、gif
/// </summary>
[JsonProperty("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>
[JsonProperty("scene_type")]
public string SceneType { get; set; }
}
}