com.aliyun.dingtalkyida_1_0.models.GetPrintAppInfoResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;
import com.aliyun.tea.*;
public class GetPrintAppInfoResponseBody extends TeaModel {
@NameInMap("result")
public java.util.List result;
public static GetPrintAppInfoResponseBody build(java.util.Map map) throws Exception {
GetPrintAppInfoResponseBody self = new GetPrintAppInfoResponseBody();
return TeaModel.build(map, self);
}
public GetPrintAppInfoResponseBody setResult(java.util.List result) {
this.result = result;
return this;
}
public java.util.List getResult() {
return this.result;
}
public static class GetPrintAppInfoResponseBodyResultFormInfoList extends TeaModel {
@NameInMap("formName")
public String formName;
@NameInMap("formUuid")
public String formUuid;
public static GetPrintAppInfoResponseBodyResultFormInfoList build(java.util.Map map) throws Exception {
GetPrintAppInfoResponseBodyResultFormInfoList self = new GetPrintAppInfoResponseBodyResultFormInfoList();
return TeaModel.build(map, self);
}
public GetPrintAppInfoResponseBodyResultFormInfoList setFormName(String formName) {
this.formName = formName;
return this;
}
public String getFormName() {
return this.formName;
}
public GetPrintAppInfoResponseBodyResultFormInfoList setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
}
public static class GetPrintAppInfoResponseBodyResult extends TeaModel {
/**
* example:
* 李四的宜搭应用
*/
@NameInMap("appName")
public String appName;
@NameInMap("appType")
public String appType;
@NameInMap("formInfoList")
public java.util.List formInfoList;
@NameInMap("iconUrl")
public String iconUrl;
public static GetPrintAppInfoResponseBodyResult build(java.util.Map map) throws Exception {
GetPrintAppInfoResponseBodyResult self = new GetPrintAppInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public GetPrintAppInfoResponseBodyResult setAppName(String appName) {
this.appName = appName;
return this;
}
public String getAppName() {
return this.appName;
}
public GetPrintAppInfoResponseBodyResult setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetPrintAppInfoResponseBodyResult setFormInfoList(java.util.List formInfoList) {
this.formInfoList = formInfoList;
return this;
}
public java.util.List getFormInfoList() {
return this.formInfoList;
}
public GetPrintAppInfoResponseBodyResult setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
return this;
}
public String getIconUrl() {
return this.iconUrl;
}
}
}