using System;
using System.Collections.Generic;
using Newtonsoft.Json;
namespace Alipay.AopSdk.Core.Domain
{
///
/// InputFieldModel Data Structure.
///
[Serializable]
public class InputFieldModel : AopObject
{
///
/// 默认提示值,例如歌华宽带的金额为100的倍数
///
[JsonProperty("default_value")]
public string DefaultValue { get; set; }
///
/// 域英文名称 例如:billkey
///
[JsonProperty("field_name")]
public string FieldName { get; set; }
///
/// 输入框下方文字提示,例如: 户号为10位数字
///
[JsonProperty("field_tips")]
public string FieldTips { get; set; }
///
/// 页面显示提示 例如:手机号码
///
[JsonProperty("field_title")]
public string FieldTitle { get; set; }
///
/// 控件类型 输入框类型 例如:inputText (文本输入框)
///
[JsonProperty("field_type")]
public string FieldType { get; set; }
///
/// 控件展示顺序 例如:优选级 1
///
[JsonProperty("priority")]
public string Priority { get; set; }
///
/// 输入域的校验规则模型
///
[JsonProperty("regexp_rule_list")]
public List RegexpRuleList { get; set; }
}
}