using System;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// SsdataDataserviceRiskDeviceidentityQueryModel Data Structure.
///
[Serializable]
public class SsdataDataserviceRiskDeviceidentityQueryModel : AopObject
{
///
/// 设备token值, 服务端JS生成的设备token值(由我方提供的JS生成),界面引入我方提供的js即可获取afs_token值,token的失效期为12个小时,基本上是190位的一串字符。
///
[JsonProperty("device_token")]
public string DeviceToken { get; set; }
}
}