43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System;
|
||
using System.Xml.Serialization;
|
||
|
||
namespace Aop.Api.Domain
|
||
{
|
||
/// <summary>
|
||
/// AlipayUserCharityForestsendpicSendModel Data Structure.
|
||
/// </summary>
|
||
[Serializable]
|
||
public class AlipayUserCharityForestsendpicSendModel : AopObject
|
||
{
|
||
/// <summary>
|
||
/// 蚂蚁森林林区ID
|
||
/// </summary>
|
||
[XmlElement("forest_id")]
|
||
public string ForestId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 图片唯一编号,用于幂等控制
|
||
/// </summary>
|
||
[XmlElement("out_biz_no")]
|
||
public string OutBizNo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 拍摄图片时的气象信息,包括温度(temperature °C)、湿度(humidity %)、气压(pressure hPa)和光照强度(illumination Lux)等,json格式
|
||
/// </summary>
|
||
[XmlElement("pic_ext_info")]
|
||
public string PicExtInfo { get; set; }
|
||
|
||
/// <summary>
|
||
/// 蚂蚁森林实时图像地址,必须是阿里云地址,包含"aliyun"信息
|
||
/// </summary>
|
||
[XmlElement("pic_url")]
|
||
public string PicUrl { get; set; }
|
||
|
||
/// <summary>
|
||
/// 图片拍摄时间,format: YYYY-MM-DDTHH:MM:SS
|
||
/// </summary>
|
||
[XmlElement("shoot_time")]
|
||
public string ShootTime { get; set; }
|
||
}
|
||
}
|