NewGaoKaoApi/PaymentSDK/AliPay/Domain/MediaContentList.cs

31 lines
883 B
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>
/// MediaContentList Data Structure.
/// </summary>
[Serializable]
public class MediaContentList : AopObject
{
/// <summary>
/// 业务标识。 1身份证正面照片 2身份证背面照片 3行驶证正页正面照片 4行驶证副页正面照片 5车头照片
/// </summary>
[XmlElement("biz_type")]
public long BizType { get; set; }
/// <summary>
/// 资料base64值
/// </summary>
[XmlElement("content")]
public string Content { get; set; }
/// <summary>
/// 媒体类型。 1jpg图片 2png图片 3mp4视频
/// </summary>
[XmlElement("media_type")]
public long MediaType { get; set; }
}
}