using System; using System.Xml.Serialization; namespace Aop.Api.Domain { /// /// ZhimaCreditEpSceneRatingApplyModel Data Structure. /// [Serializable] public class ZhimaCreditEpSceneRatingApplyModel : AopObject { /// /// 发起申请的环境,支持以下值: PC:PC端浏览器, ALIPAY_H5,支付宝移动端H5, XIAOCHENGXU:支付宝小程序, MINIAPP:小程序JSAPI调用方式 默认ALIPAY_H5 /// [XmlElement("apply_environment")] public string ApplyEnvironment { get; set; } /// /// 芝麻企业信用评估订单号 /// [XmlElement("order_no")] public string OrderNo { get; set; } /// /// 商户请求的唯一标志,64位长度的字母数字下划线组合。该标识作为对账的关键信息,商户要保证其唯一性。 /// [XmlElement("out_order_no")] public string OutOrderNo { get; set; } } }