using System; using Newtonsoft.Json; namespace Alipay.AopSdk.Core.Domain { /// /// AlipayUserPicture Data Structure. /// [Serializable] public class AlipayUserPicture : AopObject { /// /// 图片类型,包括身份证正反面、营业执照等 /// [JsonProperty("picture_type")] public string PictureType { get; set; } /// /// 用于调用alipay.user.certify.image.fetch接口,获取图片资源 /// [JsonProperty("picture_url")] public string PictureUrl { get; set; } } }