com.alipay.api.domain.AlipayDataDataserviceCodeRecoModel Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of alipay-sdk-java Show documentation
Show all versions of alipay-sdk-java Show documentation
Alipay openapi SDK for Java
Copyright © 2018 杭州蚂蚁金服
All rights reserved.
版权所有 (C)杭州蚂蚁金服
http://open.alipay.com
package com.alipay.api.domain;
import com.alipay.api.AlipayObject;
import com.alipay.api.internal.mapping.ApiField;
/**
* 改api为数立提供验证码识别服务。isv可以通过该接口,使用我们的图片识别能力。
*
* @author auto create
* @since 1.0, 2019-08-13 16:30:28
*/
public class AlipayDataDataserviceCodeRecoModel extends AlipayObject {
private static final long serialVersionUID = 8121263885588383653L;
/**
* 参数配置:内容包括验证码之类,长度,是否可分割等
*/
@ApiField("config")
private String config;
/**
* 图片的内容(以base64位编码),大小不超过10k
*/
@ApiField("content")
private String content;
/**
* 策略,目前有2种,机器识别与人工打码(机器:machine;人工打码:manual)
*/
@ApiField("strategy")
private String strategy;
public String getConfig() {
return this.config;
}
public void setConfig(String config) {
this.config = config;
}
public String getContent() {
return this.content;
}
public void setContent(String content) {
this.content = content;
}
public String getStrategy() {
return this.strategy;
}
public void setStrategy(String strategy) {
this.strategy = strategy;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy