com.antgroup.antchain.openapi.bot.models.BaiQrcodeGenerateReqData Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-bot Show documentation
Show all versions of openapi-bot Show documentation
Ant Chain BOT SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.bot.models;
import com.aliyun.tea.*;
public class BaiQrcodeGenerateReqData extends TeaModel {
// 二维码的码值
@NameInMap("qrcode_content")
@Validation(required = true)
public String qrcodeContent;
public static BaiQrcodeGenerateReqData build(java.util.Map map) throws Exception {
BaiQrcodeGenerateReqData self = new BaiQrcodeGenerateReqData();
return TeaModel.build(map, self);
}
public BaiQrcodeGenerateReqData setQrcodeContent(String qrcodeContent) {
this.qrcodeContent = qrcodeContent;
return this;
}
public String getQrcodeContent() {
return this.qrcodeContent;
}
}