NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayOpenMiniAmpeDevicemod...

43 lines
1.2 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>
/// AlipayOpenMiniAmpeDevicemodelAddModel Data Structure.
/// </summary>
[Serializable]
public class AlipayOpenMiniAmpeDevicemodelAddModel : AopObject
{
/// <summary>
/// 硬件参数最大长度30
/// </summary>
[XmlElement("hardware_params")]
public string HardwareParams { get; set; }
/// <summary>
/// 机型名称必填最大长度30单productId下唯一
/// </summary>
[XmlElement("model_name")]
public string ModelName { get; set; }
/// <summary>
/// 机型编号必填最大长度30单productId下唯一
/// </summary>
[XmlElement("model_no")]
public string ModelNo { get; set; }
/// <summary>
/// 产品ID必填
/// </summary>
[XmlElement("product_id")]
public long ProductId { get; set; }
/// <summary>
/// 场景码,申请后平台分配,必填
/// </summary>
[XmlElement("scene_code")]
public string SceneCode { get; set; }
}
}