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