NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayUserCharityForestsend...

43 lines
1.3 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>
/// 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 Luxjson格式
/// </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; }
}
}