NewGaoKaoApi/PaymentSDK/AliPay/Domain/AlipayCommerceIotMdevicepro...

43 lines
1.7 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>
/// AlipayCommerceIotMdeviceprodWhitelistQueryModel Data Structure.
/// </summary>
[Serializable]
public class AlipayCommerceIotMdeviceprodWhitelistQueryModel : AopObject
{
/// <summary>
/// 白名单所属应用的appID
/// </summary>
[XmlElement("app_project_id")]
public string AppProjectId { get; set; }
/// <summary>
/// 白名单分组类型。 BIZ_TYPE表示已IoT业务类型划分的用户白名单 URL表示已URL划分的用户白名单 SERVICE_ID表示已接口ID划分的用户白名单
/// </summary>
[XmlElement("group_type")]
public string GroupType { get; set; }
/// <summary>
/// 白名单分组值,与白名单分组类型相关。 白名单分组类型为IoT业务类型时白名单分组值为对应的某个具体的业务类型 白名单分组类型为URL时白名单分组值为对应的具体的URL字符串 白名单分组类型为服务ID时白名单分组值为对应的具体的某个服务的ID
/// </summary>
[XmlElement("group_value")]
public string GroupValue { get; set; }
/// <summary>
/// 用户标识类型,表示用户ID的类型。 ALIPAY_USER: 支付宝PID;
/// </summary>
[XmlElement("user_identify_type")]
public string UserIdentifyType { get; set; }
/// <summary>
/// 用于标识值与user_identify_type相关user_identify_type为ALIPAY_USER时该值表示用户PID。
/// </summary>
[XmlElement("user_identify_value")]
public string UserIdentifyValue { get; set; }
}
}