All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.alipay.api.domain.GravityParam Maven / Gradle / Ivy

Go to download

Alipay openapi SDK for Java Copyright © 2018 杭州蚂蚁金服 All rights reserved. 版权所有 (C)杭州蚂蚁金服 http://open.alipay.com

There is a newer version: 4.39.218.ALL
Show newest version
package com.alipay.api.domain;

import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;

/**
 * 多方安全风控服务咨询参数
 *
 * @author auto create
 * @since 1.0, 2022-06-17 14:18:45
 */
public class GravityParam extends AlipayObject {

	private static final long serialVersionUID = 8494428473573821497L;

	/**
	 * 属性名:content+是否唯一:无需唯一+场景:多方安全风控服务参数值+枚举:无枚举值+如何获取:调用方根据不同风控产品所需参数对其加密后传入(是否加密根据数安、隐私审批结果决定,由多方安全风控平台提供)+特殊说明:如需加密,密文加密方式为AES(SHA256(data)),AES秘钥为随机生成的128位会话秘钥
	 */
	@ApiField("content")
	private String content;

	/**
	 * 参数名:property+是否唯一:无需唯一+应用场景:多方安全风控咨询服务参数属性代码+枚举:无枚举+如何获取:多方安全风控平台分发+特殊说明:根据数安、隐私要求,用代码代表具体属性名称,譬如00-1616062045代表手机号
	 */
	@ApiField("property")
	private String property;

	public String getContent() {
		return this.content;
	}
	public void setContent(String content) {
		this.content = content;
	}

	public String getProperty() {
		return this.property;
	}
	public void setProperty(String property) {
		this.property = property;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy