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

com.alipay.api.domain.DataSecCheckContent 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 java.util.List;

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

/**
 * 口碑数据安全内容校验主体信息
 *
 * @author auto create
 * @since 1.0, 2018-06-20 11:16:30
 */
public class DataSecCheckContent extends AlipayObject {

	private static final long serialVersionUID = 3722792885962488727L;

	/**
	 * 文本或图片对应的请求唯一值,用于标识文本或图片内容
	 */
	@ApiField("data_id")
	private String dataId;

	/**
	 * 数据来源类型:TEXT--文本,IMAGE--图片
	 */
	@ApiField("scene_type")
	private String sceneType;

	/**
	 * 待校验的文本数据(如果包含富文本,请一起传入)
	 */
	@ApiField("text")
	private String text;

	/**
	 * 待校验图片对应地址
	 */
	@ApiListField("urls")
	@ApiField("string")
	private List urls;

	public String getDataId() {
		return this.dataId;
	}
	public void setDataId(String dataId) {
		this.dataId = dataId;
	}

	public String getSceneType() {
		return this.sceneType;
	}
	public void setSceneType(String sceneType) {
		this.sceneType = sceneType;
	}

	public String getText() {
		return this.text;
	}
	public void setText(String text) {
		this.text = text;
	}

	public List getUrls() {
		return this.urls;
	}
	public void setUrls(List urls) {
		this.urls = urls;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy