index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOpenUrlHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOpenUrlHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetOpenUrlHeadersAccountContext accountContext; public static GetOpenUrlHeaders build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlHeaders self = new GetOpenUrlHeaders(); return TeaModel.build(map, self); } public GetOpenUrlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOpenUrlHeaders setAccountContext(GetOpenUrlHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetOpenUrlHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetOpenUrlHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetOpenUrlHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlHeadersAccountContext self = new GetOpenUrlHeadersAccountContext(); return TeaModel.build(map, self); } public GetOpenUrlHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOpenUrlRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOpenUrlRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>APP_PBKT0xxx</p> */ @NameInMap("AppType") public String appType; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p><a href="https://www.aliwork.com/fileHandle?appType=APP_VN7I6xxx&fileName=fileName.xlsx&instId=&type=download">https://www.aliwork.com/fileHandle?appType=APP_VN7I6xxx&amp;fileName=fileName.xlsx&amp;instId=&amp;type=download</a></p> */ @NameInMap("FileUrl") public String fileUrl; /** * <strong>example:</strong> * <p>zh_CN</p> */ @NameInMap("Language") public String language; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>hexxxx</p> */ @NameInMap("SystemToken") public String systemToken; /** * <strong>example:</strong> * <p>60000L</p> */ @NameInMap("Timeout") public Long timeout; public static GetOpenUrlRequest build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlRequest self = new GetOpenUrlRequest(); return TeaModel.build(map, self); } public GetOpenUrlRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetOpenUrlRequest setFileUrl(String fileUrl) { this.fileUrl = fileUrl; return this; } public String getFileUrl() { return this.fileUrl; } public GetOpenUrlRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetOpenUrlRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public GetOpenUrlRequest setTimeout(Long timeout) { this.timeout = timeout; return this; } public Long getTimeout() { return this.timeout; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOpenUrlResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOpenUrlResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetOpenUrlResponseBody body; public static GetOpenUrlResponse build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlResponse self = new GetOpenUrlResponse(); return TeaModel.build(map, self); } public GetOpenUrlResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetOpenUrlResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetOpenUrlResponse setBody(GetOpenUrlResponseBody body) { this.body = body; return this; } public GetOpenUrlResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOpenUrlResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOpenUrlResponseBody extends TeaModel { /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>https/<a href="http://www.aliwork.com">www.aliwork.com</a></p> */ @NameInMap("result") public String result; public static GetOpenUrlResponseBody build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlResponseBody self = new GetOpenUrlResponseBody(); return TeaModel.build(map, self); } public GetOpenUrlResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetOpenUrlResponseBody setResult(String result) { this.result = result; return this; } public String getResult() { return this.result; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOpenUrlShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOpenUrlShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetOpenUrlShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetOpenUrlShrinkHeaders self = new GetOpenUrlShrinkHeaders(); return TeaModel.build(map, self); } public GetOpenUrlShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOpenUrlShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOperationRecordsHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOperationRecordsHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetOperationRecordsHeadersAccountContext accountContext; public static GetOperationRecordsHeaders build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsHeaders self = new GetOperationRecordsHeaders(); return TeaModel.build(map, self); } public GetOperationRecordsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOperationRecordsHeaders setAccountContext(GetOperationRecordsHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetOperationRecordsHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetOperationRecordsHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetOperationRecordsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsHeadersAccountContext self = new GetOperationRecordsHeadersAccountContext(); return TeaModel.build(map, self); } public GetOperationRecordsHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOperationRecordsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOperationRecordsRequest extends TeaModel { /** * <strong>example:</strong> * <p>APP_PBxxx</p> */ @NameInMap("AppType") public String appType; /** * <strong>example:</strong> * <p>zh_CN</p> */ @NameInMap("Language") public String language; /** * <strong>example:</strong> * <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>hexxyy</p> */ @NameInMap("SystemToken") public String systemToken; public static GetOperationRecordsRequest build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsRequest self = new GetOperationRecordsRequest(); return TeaModel.build(map, self); } public GetOperationRecordsRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetOperationRecordsRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetOperationRecordsRequest setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetOperationRecordsRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOperationRecordsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOperationRecordsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetOperationRecordsResponseBody body; public static GetOperationRecordsResponse build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsResponse self = new GetOperationRecordsResponse(); return TeaModel.build(map, self); } public GetOperationRecordsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetOperationRecordsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetOperationRecordsResponse setBody(GetOperationRecordsResponseBody body) { this.body = body; return this; } public GetOperationRecordsResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOperationRecordsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOperationRecordsResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("result") public java.util.List<GetOperationRecordsResponseBodyResult> result; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetOperationRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsResponseBody self = new GetOperationRecordsResponseBody(); return TeaModel.build(map, self); } public GetOperationRecordsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetOperationRecordsResponseBody setResult(java.util.List<GetOperationRecordsResponseBodyResult> result) { this.result = result; return this; } public java.util.List<GetOperationRecordsResponseBodyResult> getResult() { return this.result; } public GetOperationRecordsResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetOperationRecordsResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetOperationRecordsResponseBodyResult extends TeaModel { /** * <strong>example:</strong> * <p>return</p> */ @NameInMap("Action") public String action; /** * <strong>example:</strong> * <p>同意</p> */ @NameInMap("ActionExit") public String actionExit; /** * <strong>example:</strong> * <p>2021-02-01</p> */ @NameInMap("ActiveTimeGMT") public String activeTimeGMT; /** * <strong>example:</strong> * <p>act-xxaanfaf</p> */ @NameInMap("ActivityId") public String activityId; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("DataId") public Long dataId; /** * <strong>example:</strong> * <p><a href="https://oss.com/Signature.pdf">https://oss.com/Signature.pdf</a></p> */ @NameInMap("DigitalSign") public String digitalSign; /** * <strong>example:</strong> * <p><a href="https://oss.com/a.pdf">https://oss.com/a.pdf</a></p> */ @NameInMap("Files") public String files; /** * <strong>example:</strong> * <p>2021-01-01</p> */ @NameInMap("OperateTimeGMT") public String operateTimeGMT; /** * <strong>example:</strong> * <p>remove</p> */ @NameInMap("OperateType") public String operateType; /** * <strong>example:</strong> * <p>张三</p> */ @NameInMap("OperatorDisplayName") public String operatorDisplayName; /** * <strong>example:</strong> * <p>李四</p> */ @NameInMap("OperatorName") public String operatorName; /** * <strong>example:</strong> * <p>无冬</p> */ @NameInMap("OperatorNickName") public String operatorNickName; /** * <strong>example:</strong> * <p><a href="https://oss.com/a.jpeg">https://oss.com/a.jpeg</a></p> */ @NameInMap("OperatorPhotoUrl") public String operatorPhotoUrl; /** * <strong>example:</strong> * <p>良好</p> */ @NameInMap("OperatorStatus") public String operatorStatus; /** * <strong>example:</strong> * <p>manager123</p> */ @NameInMap("OperatorUserId") public String operatorUserId; /** * <strong>example:</strong> * <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>确认同意</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>请购类型</p> */ @NameInMap("ShowName") public String showName; /** * <strong>example:</strong> * <p>12</p> */ @NameInMap("Size") public Integer size; /** * <strong>example:</strong> * <p>同步</p> */ @NameInMap("TaskExecuteType") public String taskExecuteType; /** * <strong>example:</strong> * <p>2021-01-01</p> */ @NameInMap("TaskHoldTimeGMT") public Long taskHoldTimeGMT; /** * <strong>example:</strong> * <p>task-123</p> */ @NameInMap("TaskId") public String taskId; /** * <strong>example:</strong> * <p>append task</p> */ @NameInMap("TaskType") public String taskType; /** * <strong>example:</strong> * <p>i18n</p> */ @NameInMap("Type") public String type; public static GetOperationRecordsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsResponseBodyResult self = new GetOperationRecordsResponseBodyResult(); return TeaModel.build(map, self); } public GetOperationRecordsResponseBodyResult setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } public GetOperationRecordsResponseBodyResult setActionExit(String actionExit) { this.actionExit = actionExit; return this; } public String getActionExit() { return this.actionExit; } public GetOperationRecordsResponseBodyResult setActiveTimeGMT(String activeTimeGMT) { this.activeTimeGMT = activeTimeGMT; return this; } public String getActiveTimeGMT() { return this.activeTimeGMT; } public GetOperationRecordsResponseBodyResult setActivityId(String activityId) { this.activityId = activityId; return this; } public String getActivityId() { return this.activityId; } public GetOperationRecordsResponseBodyResult setDataId(Long dataId) { this.dataId = dataId; return this; } public Long getDataId() { return this.dataId; } public GetOperationRecordsResponseBodyResult setDigitalSign(String digitalSign) { this.digitalSign = digitalSign; return this; } public String getDigitalSign() { return this.digitalSign; } public GetOperationRecordsResponseBodyResult setFiles(String files) { this.files = files; return this; } public String getFiles() { return this.files; } public GetOperationRecordsResponseBodyResult setOperateTimeGMT(String operateTimeGMT) { this.operateTimeGMT = operateTimeGMT; return this; } public String getOperateTimeGMT() { return this.operateTimeGMT; } public GetOperationRecordsResponseBodyResult setOperateType(String operateType) { this.operateType = operateType; return this; } public String getOperateType() { return this.operateType; } public GetOperationRecordsResponseBodyResult setOperatorDisplayName(String operatorDisplayName) { this.operatorDisplayName = operatorDisplayName; return this; } public String getOperatorDisplayName() { return this.operatorDisplayName; } public GetOperationRecordsResponseBodyResult setOperatorName(String operatorName) { this.operatorName = operatorName; return this; } public String getOperatorName() { return this.operatorName; } public GetOperationRecordsResponseBodyResult setOperatorNickName(String operatorNickName) { this.operatorNickName = operatorNickName; return this; } public String getOperatorNickName() { return this.operatorNickName; } public GetOperationRecordsResponseBodyResult setOperatorPhotoUrl(String operatorPhotoUrl) { this.operatorPhotoUrl = operatorPhotoUrl; return this; } public String getOperatorPhotoUrl() { return this.operatorPhotoUrl; } public GetOperationRecordsResponseBodyResult setOperatorStatus(String operatorStatus) { this.operatorStatus = operatorStatus; return this; } public String getOperatorStatus() { return this.operatorStatus; } public GetOperationRecordsResponseBodyResult setOperatorUserId(String operatorUserId) { this.operatorUserId = operatorUserId; return this; } public String getOperatorUserId() { return this.operatorUserId; } public GetOperationRecordsResponseBodyResult setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetOperationRecordsResponseBodyResult setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public GetOperationRecordsResponseBodyResult setShowName(String showName) { this.showName = showName; return this; } public String getShowName() { return this.showName; } public GetOperationRecordsResponseBodyResult setSize(Integer size) { this.size = size; return this; } public Integer getSize() { return this.size; } public GetOperationRecordsResponseBodyResult setTaskExecuteType(String taskExecuteType) { this.taskExecuteType = taskExecuteType; return this; } public String getTaskExecuteType() { return this.taskExecuteType; } public GetOperationRecordsResponseBodyResult setTaskHoldTimeGMT(Long taskHoldTimeGMT) { this.taskHoldTimeGMT = taskHoldTimeGMT; return this; } public Long getTaskHoldTimeGMT() { return this.taskHoldTimeGMT; } public GetOperationRecordsResponseBodyResult setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } public GetOperationRecordsResponseBodyResult setTaskType(String taskType) { this.taskType = taskType; return this; } public String getTaskType() { return this.taskType; } public GetOperationRecordsResponseBodyResult setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOperationRecordsShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOperationRecordsShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetOperationRecordsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetOperationRecordsShrinkHeaders self = new GetOperationRecordsShrinkHeaders(); return TeaModel.build(map, self); } public GetOperationRecordsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOperationRecordsShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetOrgLiveListHeadersAccountContext accountContext; public static GetOrgLiveListHeaders build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListHeaders self = new GetOrgLiveListHeaders(); return TeaModel.build(map, self); } public GetOrgLiveListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOrgLiveListHeaders setAccountContext(GetOrgLiveListHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetOrgLiveListHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetOrgLiveListHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetOrgLiveListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListHeadersAccountContext self = new GetOrgLiveListHeadersAccountContext(); return TeaModel.build(map, self); } public GetOrgLiveListHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>db4d318xxxxx</p> */ @NameInMap("CorpId") public String corpId; /** * <strong>example:</strong> * <p>1720211800000</p> */ @NameInMap("EndTime") public Long endTime; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Long pageSize; /** * <strong>example:</strong> * <p>1719211800000</p> */ @NameInMap("StartTime") public Long startTime; @NameInMap("TenantContext") public GetOrgLiveListRequestTenantContext tenantContext; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetOrgLiveListRequest build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListRequest self = new GetOrgLiveListRequest(); return TeaModel.build(map, self); } public GetOrgLiveListRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public GetOrgLiveListRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public GetOrgLiveListRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetOrgLiveListRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetOrgLiveListRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public GetOrgLiveListRequest setTenantContext(GetOrgLiveListRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetOrgLiveListRequestTenantContext getTenantContext() { return this.tenantContext; } public GetOrgLiveListRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public static class GetOrgLiveListRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetOrgLiveListRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListRequestTenantContext self = new GetOrgLiveListRequestTenantContext(); return TeaModel.build(map, self); } public GetOrgLiveListRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetOrgLiveListResponseBody body; public static GetOrgLiveListResponse build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponse self = new GetOrgLiveListResponse(); return TeaModel.build(map, self); } public GetOrgLiveListResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetOrgLiveListResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetOrgLiveListResponse setBody(GetOrgLiveListResponseBody body) { this.body = body; return this; } public GetOrgLiveListResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("result") public GetOrgLiveListResponseBodyResult result; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetOrgLiveListResponseBody build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBody self = new GetOrgLiveListResponseBody(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetOrgLiveListResponseBody setResult(GetOrgLiveListResponseBodyResult result) { this.result = result; return this; } public GetOrgLiveListResponseBodyResult getResult() { return this.result; } public GetOrgLiveListResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetOrgLiveListResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetOrgLiveListResponseBodyResultNewLiveLiveList extends TeaModel { /** * <strong>example:</strong> * <p>nickName</p> */ @NameInMap("AnchorNickname") public String anchorNickname; @NameInMap("AnchorUnionId") public String anchorUnionId; @NameInMap("AnchorUnionIdInAlibaba") public String anchorUnionIdInAlibaba; /** * <strong>example:</strong> * <p>ersqqdddf</p> */ @NameInMap("AnchorUserId") public String anchorUserId; /** * <strong>example:</strong> * <p>1398324600000</p> */ @NameInMap("LiveEndTime") public Long liveEndTime; /** * <strong>example:</strong> * <p>1398321600000</p> */ @NameInMap("LiveStartTime") public Long liveStartTime; /** * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveUuid") public String liveUuid; /** * <strong>example:</strong> * <p>群OpenConversationId</p> */ @NameInMap("ShareOpenConversationIds") public java.util.List<String> shareOpenConversationIds; /** * <strong>example:</strong> * <p>直播标题</p> */ @NameInMap("Title") public String title; public static GetOrgLiveListResponseBodyResultNewLiveLiveList build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBodyResultNewLiveLiveList self = new GetOrgLiveListResponseBodyResultNewLiveLiveList(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBodyResultNewLiveLiveList setAnchorNickname(String anchorNickname) { this.anchorNickname = anchorNickname; return this; } public String getAnchorNickname() { return this.anchorNickname; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setAnchorUnionId(String anchorUnionId) { this.anchorUnionId = anchorUnionId; return this; } public String getAnchorUnionId() { return this.anchorUnionId; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setAnchorUnionIdInAlibaba(String anchorUnionIdInAlibaba) { this.anchorUnionIdInAlibaba = anchorUnionIdInAlibaba; return this; } public String getAnchorUnionIdInAlibaba() { return this.anchorUnionIdInAlibaba; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setAnchorUserId(String anchorUserId) { this.anchorUserId = anchorUserId; return this; } public String getAnchorUserId() { return this.anchorUserId; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setLiveEndTime(Long liveEndTime) { this.liveEndTime = liveEndTime; return this; } public Long getLiveEndTime() { return this.liveEndTime; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setLiveStartTime(Long liveStartTime) { this.liveStartTime = liveStartTime; return this; } public Long getLiveStartTime() { return this.liveStartTime; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setLiveUuid(String liveUuid) { this.liveUuid = liveUuid; return this; } public String getLiveUuid() { return this.liveUuid; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setShareOpenConversationIds(java.util.List<String> shareOpenConversationIds) { this.shareOpenConversationIds = shareOpenConversationIds; return this; } public java.util.List<String> getShareOpenConversationIds() { return this.shareOpenConversationIds; } public GetOrgLiveListResponseBodyResultNewLiveLiveList setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } public static class GetOrgLiveListResponseBodyResultNewLive extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("HasMore") public Boolean hasMore; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("LiveList") public java.util.List<GetOrgLiveListResponseBodyResultNewLiveLiveList> liveList; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Long pageSize; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalCount") public Long totalCount; public static GetOrgLiveListResponseBodyResultNewLive build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBodyResultNewLive self = new GetOrgLiveListResponseBodyResultNewLive(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBodyResultNewLive setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public GetOrgLiveListResponseBodyResultNewLive setLiveList(java.util.List<GetOrgLiveListResponseBodyResultNewLiveLiveList> liveList) { this.liveList = liveList; return this; } public java.util.List<GetOrgLiveListResponseBodyResultNewLiveLiveList> getLiveList() { return this.liveList; } public GetOrgLiveListResponseBodyResultNewLive setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetOrgLiveListResponseBodyResultNewLive setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetOrgLiveListResponseBodyResultNewLive setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } } public static class GetOrgLiveListResponseBodyResultUpdateLiveLiveList extends TeaModel { /** * <strong>example:</strong> * <p>nickName</p> */ @NameInMap("AnchorNickname") public String anchorNickname; @NameInMap("AnchorUnionId") public String anchorUnionId; @NameInMap("AnchorUnionIdInAlibaba") public String anchorUnionIdInAlibaba; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("AnchorUserId") public String anchorUserId; /** * <strong>example:</strong> * <p>1398324600000</p> */ @NameInMap("LiveEndTime") public Long liveEndTime; /** * <strong>example:</strong> * <p>1398321600000</p> */ @NameInMap("LiveStartTime") public Long liveStartTime; /** * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveUuid") public String liveUuid; /** * <strong>example:</strong> * <p>直播标题</p> */ @NameInMap("Title") public String title; public static GetOrgLiveListResponseBodyResultUpdateLiveLiveList build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBodyResultUpdateLiveLiveList self = new GetOrgLiveListResponseBodyResultUpdateLiveLiveList(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setAnchorNickname(String anchorNickname) { this.anchorNickname = anchorNickname; return this; } public String getAnchorNickname() { return this.anchorNickname; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setAnchorUnionId(String anchorUnionId) { this.anchorUnionId = anchorUnionId; return this; } public String getAnchorUnionId() { return this.anchorUnionId; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setAnchorUnionIdInAlibaba(String anchorUnionIdInAlibaba) { this.anchorUnionIdInAlibaba = anchorUnionIdInAlibaba; return this; } public String getAnchorUnionIdInAlibaba() { return this.anchorUnionIdInAlibaba; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setAnchorUserId(String anchorUserId) { this.anchorUserId = anchorUserId; return this; } public String getAnchorUserId() { return this.anchorUserId; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setLiveEndTime(Long liveEndTime) { this.liveEndTime = liveEndTime; return this; } public Long getLiveEndTime() { return this.liveEndTime; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setLiveStartTime(Long liveStartTime) { this.liveStartTime = liveStartTime; return this; } public Long getLiveStartTime() { return this.liveStartTime; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setLiveUuid(String liveUuid) { this.liveUuid = liveUuid; return this; } public String getLiveUuid() { return this.liveUuid; } public GetOrgLiveListResponseBodyResultUpdateLiveLiveList setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } public static class GetOrgLiveListResponseBodyResultUpdateLive extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("HasMore") public Boolean hasMore; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("LiveList") public java.util.List<GetOrgLiveListResponseBodyResultUpdateLiveLiveList> liveList; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Long pageSize; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalCount") public Long totalCount; public static GetOrgLiveListResponseBodyResultUpdateLive build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBodyResultUpdateLive self = new GetOrgLiveListResponseBodyResultUpdateLive(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBodyResultUpdateLive setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public GetOrgLiveListResponseBodyResultUpdateLive setLiveList(java.util.List<GetOrgLiveListResponseBodyResultUpdateLiveLiveList> liveList) { this.liveList = liveList; return this; } public java.util.List<GetOrgLiveListResponseBodyResultUpdateLiveLiveList> getLiveList() { return this.liveList; } public GetOrgLiveListResponseBodyResultUpdateLive setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetOrgLiveListResponseBodyResultUpdateLive setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetOrgLiveListResponseBodyResultUpdateLive setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } } public static class GetOrgLiveListResponseBodyResult extends TeaModel { /** * <strong>example:</strong> * <p>新建的直播列表</p> */ @NameInMap("NewLive") public GetOrgLiveListResponseBodyResultNewLive newLive; /** * <strong>example:</strong> * <p>修改的直播列表</p> */ @NameInMap("UpdateLive") public GetOrgLiveListResponseBodyResultUpdateLive updateLive; public static GetOrgLiveListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListResponseBodyResult self = new GetOrgLiveListResponseBodyResult(); return TeaModel.build(map, self); } public GetOrgLiveListResponseBodyResult setNewLive(GetOrgLiveListResponseBodyResultNewLive newLive) { this.newLive = newLive; return this; } public GetOrgLiveListResponseBodyResultNewLive getNewLive() { return this.newLive; } public GetOrgLiveListResponseBodyResult setUpdateLive(GetOrgLiveListResponseBodyResultUpdateLive updateLive) { this.updateLive = updateLive; return this; } public GetOrgLiveListResponseBodyResultUpdateLive getUpdateLive() { return this.updateLive; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetOrgLiveListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListShrinkHeaders self = new GetOrgLiveListShrinkHeaders(); return TeaModel.build(map, self); } public GetOrgLiveListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOrgLiveListShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgLiveListShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgLiveListShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>db4d318xxxxx</p> */ @NameInMap("CorpId") public String corpId; /** * <strong>example:</strong> * <p>1720211800000</p> */ @NameInMap("EndTime") public Long endTime; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Long pageSize; /** * <strong>example:</strong> * <p>1719211800000</p> */ @NameInMap("StartTime") public Long startTime; @NameInMap("TenantContext") public String tenantContextShrink; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetOrgLiveListShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetOrgLiveListShrinkRequest self = new GetOrgLiveListShrinkRequest(); return TeaModel.build(map, self); } public GetOrgLiveListShrinkRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public GetOrgLiveListShrinkRequest setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public GetOrgLiveListShrinkRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetOrgLiveListShrinkRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public GetOrgLiveListShrinkRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public GetOrgLiveListShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public GetOrgLiveListShrinkRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext accountContext; public static GetOrgOrWebOpenDocContentTaskIdHeaders build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdHeaders self = new GetOrgOrWebOpenDocContentTaskIdHeaders(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOrgOrWebOpenDocContentTaskIdHeaders setAccountContext(GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext self = new GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv</p> */ @NameInMap("DentryUuid") public String dentryUuid; @NameInMap("GenerateCp") public Boolean generateCp; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("ScopeType") public Integer scopeType; /** * <strong>example:</strong> * <p>markdown</p> */ @NameInMap("TargetFormat") public String targetFormat; @NameInMap("TenantContext") public GetOrgOrWebOpenDocContentTaskIdRequestTenantContext tenantContext; public static GetOrgOrWebOpenDocContentTaskIdRequest build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdRequest self = new GetOrgOrWebOpenDocContentTaskIdRequest(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdRequest setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public GetOrgOrWebOpenDocContentTaskIdRequest setGenerateCp(Boolean generateCp) { this.generateCp = generateCp; return this; } public Boolean getGenerateCp() { return this.generateCp; } public GetOrgOrWebOpenDocContentTaskIdRequest setScopeType(Integer scopeType) { this.scopeType = scopeType; return this; } public Integer getScopeType() { return this.scopeType; } public GetOrgOrWebOpenDocContentTaskIdRequest setTargetFormat(String targetFormat) { this.targetFormat = targetFormat; return this; } public String getTargetFormat() { return this.targetFormat; } public GetOrgOrWebOpenDocContentTaskIdRequest setTenantContext(GetOrgOrWebOpenDocContentTaskIdRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetOrgOrWebOpenDocContentTaskIdRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetOrgOrWebOpenDocContentTaskIdRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetOrgOrWebOpenDocContentTaskIdRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdRequestTenantContext self = new GetOrgOrWebOpenDocContentTaskIdRequestTenantContext(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetOrgOrWebOpenDocContentTaskIdResponseBody body; public static GetOrgOrWebOpenDocContentTaskIdResponse build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdResponse self = new GetOrgOrWebOpenDocContentTaskIdResponse(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetOrgOrWebOpenDocContentTaskIdResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetOrgOrWebOpenDocContentTaskIdResponse setBody(GetOrgOrWebOpenDocContentTaskIdResponseBody body) { this.body = body; return this; } public GetOrgOrWebOpenDocContentTaskIdResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>158740210521</p> */ @NameInMap("taskId") public Long taskId; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetOrgOrWebOpenDocContentTaskIdResponseBody build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdResponseBody self = new GetOrgOrWebOpenDocContentTaskIdResponseBody(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetOrgOrWebOpenDocContentTaskIdResponseBody setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } public GetOrgOrWebOpenDocContentTaskIdResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetOrgOrWebOpenDocContentTaskIdResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetOrgOrWebOpenDocContentTaskIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdShrinkHeaders self = new GetOrgOrWebOpenDocContentTaskIdShrinkHeaders(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetOrgOrWebOpenDocContentTaskIdShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetOrgOrWebOpenDocContentTaskIdShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetOrgOrWebOpenDocContentTaskIdShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20eMKjyp810mMdK4Hz4B5BA6JxAZB1Gv</p> */ @NameInMap("DentryUuid") public String dentryUuid; @NameInMap("GenerateCp") public Boolean generateCp; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("ScopeType") public Integer scopeType; /** * <strong>example:</strong> * <p>markdown</p> */ @NameInMap("TargetFormat") public String targetFormat; @NameInMap("TenantContext") public String tenantContextShrink; public static GetOrgOrWebOpenDocContentTaskIdShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetOrgOrWebOpenDocContentTaskIdShrinkRequest self = new GetOrgOrWebOpenDocContentTaskIdShrinkRequest(); return TeaModel.build(map, self); } public GetOrgOrWebOpenDocContentTaskIdShrinkRequest setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public GetOrgOrWebOpenDocContentTaskIdShrinkRequest setGenerateCp(Boolean generateCp) { this.generateCp = generateCp; return this; } public Boolean getGenerateCp() { return this.generateCp; } public GetOrgOrWebOpenDocContentTaskIdShrinkRequest setScopeType(Integer scopeType) { this.scopeType = scopeType; return this; } public Integer getScopeType() { return this.scopeType; } public GetOrgOrWebOpenDocContentTaskIdShrinkRequest setTargetFormat(String targetFormat) { this.targetFormat = targetFormat; return this; } public String getTargetFormat() { return this.targetFormat; } public GetOrgOrWebOpenDocContentTaskIdShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetProcessDefinitionHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetProcessDefinitionHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetProcessDefinitionHeadersAccountContext accountContext; public static GetProcessDefinitionHeaders build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionHeaders self = new GetProcessDefinitionHeaders(); return TeaModel.build(map, self); } public GetProcessDefinitionHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetProcessDefinitionHeaders setAccountContext(GetProcessDefinitionHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetProcessDefinitionHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetProcessDefinitionHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetProcessDefinitionHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionHeadersAccountContext self = new GetProcessDefinitionHeadersAccountContext(); return TeaModel.build(map, self); } public GetProcessDefinitionHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetProcessDefinitionRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetProcessDefinitionRequest extends TeaModel { /** * <strong>example:</strong> * <p>APP_PBxxx</p> */ @NameInMap("AppType") public String appType; /** * <strong>example:</strong> * <p>ding123</p> */ @NameInMap("CorpId") public String corpId; /** * <strong>example:</strong> * <p>c-xxafafaf</p> */ @NameInMap("GroupId") public String groupId; /** * <strong>example:</strong> * <p>zh_CN</p> */ @NameInMap("Language") public String language; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("NameSpace") public String nameSpace; /** * <strong>example:</strong> * <p>o-YDJKIxxx</p> */ @NameInMap("OrderNumber") public String orderNumber; /** * <strong>example:</strong> * <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>hexxyy</p> */ @NameInMap("SystemToken") public String systemToken; /** * <strong>example:</strong> * <p>hexabc1234</p> */ @NameInMap("SystemType") public String systemType; public static GetProcessDefinitionRequest build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionRequest self = new GetProcessDefinitionRequest(); return TeaModel.build(map, self); } public GetProcessDefinitionRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetProcessDefinitionRequest setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public GetProcessDefinitionRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public GetProcessDefinitionRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetProcessDefinitionRequest setNameSpace(String nameSpace) { this.nameSpace = nameSpace; return this; } public String getNameSpace() { return this.nameSpace; } public GetProcessDefinitionRequest setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; return this; } public String getOrderNumber() { return this.orderNumber; } public GetProcessDefinitionRequest setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetProcessDefinitionRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public GetProcessDefinitionRequest setSystemType(String systemType) { this.systemType = systemType; return this; } public String getSystemType() { return this.systemType; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetProcessDefinitionResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetProcessDefinitionResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetProcessDefinitionResponseBody body; public static GetProcessDefinitionResponse build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponse self = new GetProcessDefinitionResponse(); return TeaModel.build(map, self); } public GetProcessDefinitionResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetProcessDefinitionResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetProcessDefinitionResponse setBody(GetProcessDefinitionResponseBody body) { this.body = body; return this; } public GetProcessDefinitionResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetProcessDefinitionResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetProcessDefinitionResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>FORM-EF6Y4xxx</p> */ @NameInMap("formUuid") public String formUuid; @NameInMap("originator") public GetProcessDefinitionResponseBodyOriginator originator; /** * <strong>example:</strong> * <p>agree</p> */ @NameInMap("outResult") public String outResult; @NameInMap("owners") public java.util.List<GetProcessDefinitionResponseBodyOwners> owners; /** * <strong>example:</strong> * <p>proc-123</p> */ @NameInMap("processId") public String processId; /** * <strong>example:</strong> * <p>f30233fb-72e1-4xxx</p> */ @NameInMap("processInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("status") public String status; @NameInMap("tasks") public java.util.List<GetProcessDefinitionResponseBodyTasks> tasks; /** * <strong>example:</strong> * <p>李四发起的请购单</p> */ @NameInMap("title") public String title; @NameInMap("variables") public java.util.Map<String, ?> variables; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetProcessDefinitionResponseBody build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBody self = new GetProcessDefinitionResponseBody(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBody setFormUuid(String formUuid) { this.formUuid = formUuid; return this; } public String getFormUuid() { return this.formUuid; } public GetProcessDefinitionResponseBody setOriginator(GetProcessDefinitionResponseBodyOriginator originator) { this.originator = originator; return this; } public GetProcessDefinitionResponseBodyOriginator getOriginator() { return this.originator; } public GetProcessDefinitionResponseBody setOutResult(String outResult) { this.outResult = outResult; return this; } public String getOutResult() { return this.outResult; } public GetProcessDefinitionResponseBody setOwners(java.util.List<GetProcessDefinitionResponseBodyOwners> owners) { this.owners = owners; return this; } public java.util.List<GetProcessDefinitionResponseBodyOwners> getOwners() { return this.owners; } public GetProcessDefinitionResponseBody setProcessId(String processId) { this.processId = processId; return this; } public String getProcessId() { return this.processId; } public GetProcessDefinitionResponseBody setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetProcessDefinitionResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetProcessDefinitionResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetProcessDefinitionResponseBody setTasks(java.util.List<GetProcessDefinitionResponseBodyTasks> tasks) { this.tasks = tasks; return this; } public java.util.List<GetProcessDefinitionResponseBodyTasks> getTasks() { return this.tasks; } public GetProcessDefinitionResponseBody setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public GetProcessDefinitionResponseBody setVariables(java.util.Map<String, ?> variables) { this.variables = variables; return this; } public java.util.Map<String, ?> getVariables() { return this.variables; } public GetProcessDefinitionResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetProcessDefinitionResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments extends TeaModel { /** * <strong>example:</strong> * <p>开发部</p> */ @NameInMap("DeptName") public String deptName; /** * <strong>example:</strong> * <p>development department</p> */ @NameInMap("DeptNameInEnglish") public String deptNameInEnglish; /** * <strong>example:</strong> * <p>develop-A</p> */ @NameInMap("DeptNo") public String deptNo; /** * <strong>example:</strong> * <p>总部-开发部</p> */ @NameInMap("DeptPath") public String deptPath; /** * <strong>example:</strong> * <p>xxafafaf</p> */ @NameInMap("HumanSourceGroupOrderNumber") public String humanSourceGroupOrderNumber; /** * <strong>example:</strong> * <p>123311221</p> */ @NameInMap("HumanSourceGroupWorkNo") public String humanSourceGroupWorkNo; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("Id") public Long id; /** * <strong>example:</strong> * <p>1732245789</p> */ @NameInMap("MasterWorkNo") public String masterWorkNo; public static GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments self = new GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setDeptNameInEnglish(String deptNameInEnglish) { this.deptNameInEnglish = deptNameInEnglish; return this; } public String getDeptNameInEnglish() { return this.deptNameInEnglish; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setDeptNo(String deptNo) { this.deptNo = deptNo; return this; } public String getDeptNo() { return this.deptNo; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setDeptPath(String deptPath) { this.deptPath = deptPath; return this; } public String getDeptPath() { return this.deptPath; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setHumanSourceGroupOrderNumber(String humanSourceGroupOrderNumber) { this.humanSourceGroupOrderNumber = humanSourceGroupOrderNumber; return this; } public String getHumanSourceGroupOrderNumber() { return this.humanSourceGroupOrderNumber; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setHumanSourceGroupWorkNo(String humanSourceGroupWorkNo) { this.humanSourceGroupWorkNo = humanSourceGroupWorkNo; return this; } public String getHumanSourceGroupWorkNo() { return this.humanSourceGroupWorkNo; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments setMasterWorkNo(String masterWorkNo) { this.masterWorkNo = masterWorkNo; return this; } public String getMasterWorkNo() { return this.masterWorkNo; } } public static class GetProcessDefinitionResponseBodyOriginator extends TeaModel { /** * <strong>example:</strong> * <p>开发部成立于2000年</p> */ @NameInMap("DepartmentDescription") public String departmentDescription; /** * <strong>example:</strong> * <p>ZhangSan</p> */ @NameInMap("DisplayEnName") public String displayEnName; /** * <strong>example:</strong> * <p>测试应用</p> */ @NameInMap("DisplayName") public String displayName; @NameInMap("MasterDataDepartments") public java.util.List<GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments> masterDataDepartments; /** * <strong>example:</strong> * <p>o-YDJKINSxxx</p> */ @NameInMap("OrderNumber") public String orderNumber; /** * <strong>example:</strong> * <p><a href="https://abc.com/a.png">https://abc.com/a.png</a></p> */ @NameInMap("PersonalPhoto") public String personalPhoto; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("Status") public String status; /** * <strong>example:</strong> * <p>wang123</p> */ @NameInMap("TbWang") public String tbWang; /** * <strong>example:</strong> * <p>manager123</p> */ @NameInMap("UserId") public String userId; /** * <strong>example:</strong> * <p>张三</p> */ @NameInMap("UserInfo") public String userInfo; public static GetProcessDefinitionResponseBodyOriginator build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyOriginator self = new GetProcessDefinitionResponseBodyOriginator(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyOriginator setDepartmentDescription(String departmentDescription) { this.departmentDescription = departmentDescription; return this; } public String getDepartmentDescription() { return this.departmentDescription; } public GetProcessDefinitionResponseBodyOriginator setDisplayEnName(String displayEnName) { this.displayEnName = displayEnName; return this; } public String getDisplayEnName() { return this.displayEnName; } public GetProcessDefinitionResponseBodyOriginator setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } public GetProcessDefinitionResponseBodyOriginator setMasterDataDepartments(java.util.List<GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments> masterDataDepartments) { this.masterDataDepartments = masterDataDepartments; return this; } public java.util.List<GetProcessDefinitionResponseBodyOriginatorMasterDataDepartments> getMasterDataDepartments() { return this.masterDataDepartments; } public GetProcessDefinitionResponseBodyOriginator setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; return this; } public String getOrderNumber() { return this.orderNumber; } public GetProcessDefinitionResponseBodyOriginator setPersonalPhoto(String personalPhoto) { this.personalPhoto = personalPhoto; return this; } public String getPersonalPhoto() { return this.personalPhoto; } public GetProcessDefinitionResponseBodyOriginator setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetProcessDefinitionResponseBodyOriginator setTbWang(String tbWang) { this.tbWang = tbWang; return this; } public String getTbWang() { return this.tbWang; } public GetProcessDefinitionResponseBodyOriginator setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public GetProcessDefinitionResponseBodyOriginator setUserInfo(String userInfo) { this.userInfo = userInfo; return this; } public String getUserInfo() { return this.userInfo; } } public static class GetProcessDefinitionResponseBodyOwnersMasterDataDepartments extends TeaModel { /** * <strong>example:</strong> * <p>开发部</p> */ @NameInMap("DeptName") public String deptName; /** * <strong>example:</strong> * <p>development department</p> */ @NameInMap("DeptNameInEnglish") public String deptNameInEnglish; /** * <strong>example:</strong> * <p>develop-A</p> */ @NameInMap("DeptNo") public String deptNo; /** * <strong>example:</strong> * <p>总部-开发部</p> */ @NameInMap("DeptPath") public String deptPath; /** * <strong>example:</strong> * <p>xxafafaf</p> */ @NameInMap("HumanSourceGroupOrderNumber") public String humanSourceGroupOrderNumber; /** * <strong>example:</strong> * <p>123311221</p> */ @NameInMap("HumanSourceGroupWorkNo") public String humanSourceGroupWorkNo; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("Id") public Long id; /** * <strong>example:</strong> * <p>1732245789</p> */ @NameInMap("MasterWorkNo") public String masterWorkNo; public static GetProcessDefinitionResponseBodyOwnersMasterDataDepartments build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyOwnersMasterDataDepartments self = new GetProcessDefinitionResponseBodyOwnersMasterDataDepartments(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setDeptNameInEnglish(String deptNameInEnglish) { this.deptNameInEnglish = deptNameInEnglish; return this; } public String getDeptNameInEnglish() { return this.deptNameInEnglish; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setDeptNo(String deptNo) { this.deptNo = deptNo; return this; } public String getDeptNo() { return this.deptNo; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setDeptPath(String deptPath) { this.deptPath = deptPath; return this; } public String getDeptPath() { return this.deptPath; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setHumanSourceGroupOrderNumber(String humanSourceGroupOrderNumber) { this.humanSourceGroupOrderNumber = humanSourceGroupOrderNumber; return this; } public String getHumanSourceGroupOrderNumber() { return this.humanSourceGroupOrderNumber; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setHumanSourceGroupWorkNo(String humanSourceGroupWorkNo) { this.humanSourceGroupWorkNo = humanSourceGroupWorkNo; return this; } public String getHumanSourceGroupWorkNo() { return this.humanSourceGroupWorkNo; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public GetProcessDefinitionResponseBodyOwnersMasterDataDepartments setMasterWorkNo(String masterWorkNo) { this.masterWorkNo = masterWorkNo; return this; } public String getMasterWorkNo() { return this.masterWorkNo; } } public static class GetProcessDefinitionResponseBodyOwners extends TeaModel { /** * <strong>example:</strong> * <p>开发部成立于2000年</p> */ @NameInMap("DepartmentDescription") public String departmentDescription; /** * <strong>example:</strong> * <p>ZhangSan</p> */ @NameInMap("DisplayEnName") public String displayEnName; /** * <strong>example:</strong> * <p>测试应用</p> */ @NameInMap("DisplayName") public String displayName; @NameInMap("MasterDataDepartments") public java.util.List<GetProcessDefinitionResponseBodyOwnersMasterDataDepartments> masterDataDepartments; /** * <strong>example:</strong> * <p>o-YDJKINSxxx</p> */ @NameInMap("OrderNumber") public String orderNumber; /** * <strong>example:</strong> * <p><a href="https://abc.com/a.png">https://abc.com/a.png</a></p> */ @NameInMap("PersonalPhoto") public String personalPhoto; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("Status") public String status; /** * <strong>example:</strong> * <p>wang123</p> */ @NameInMap("TbWang") public String tbWang; /** * <strong>example:</strong> * <p>manager123</p> */ @NameInMap("UserId") public String userId; /** * <strong>example:</strong> * <p>张三</p> */ @NameInMap("UserInfo") public String userInfo; public static GetProcessDefinitionResponseBodyOwners build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyOwners self = new GetProcessDefinitionResponseBodyOwners(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyOwners setDepartmentDescription(String departmentDescription) { this.departmentDescription = departmentDescription; return this; } public String getDepartmentDescription() { return this.departmentDescription; } public GetProcessDefinitionResponseBodyOwners setDisplayEnName(String displayEnName) { this.displayEnName = displayEnName; return this; } public String getDisplayEnName() { return this.displayEnName; } public GetProcessDefinitionResponseBodyOwners setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } public GetProcessDefinitionResponseBodyOwners setMasterDataDepartments(java.util.List<GetProcessDefinitionResponseBodyOwnersMasterDataDepartments> masterDataDepartments) { this.masterDataDepartments = masterDataDepartments; return this; } public java.util.List<GetProcessDefinitionResponseBodyOwnersMasterDataDepartments> getMasterDataDepartments() { return this.masterDataDepartments; } public GetProcessDefinitionResponseBodyOwners setOrderNumber(String orderNumber) { this.orderNumber = orderNumber; return this; } public String getOrderNumber() { return this.orderNumber; } public GetProcessDefinitionResponseBodyOwners setPersonalPhoto(String personalPhoto) { this.personalPhoto = personalPhoto; return this; } public String getPersonalPhoto() { return this.personalPhoto; } public GetProcessDefinitionResponseBodyOwners setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetProcessDefinitionResponseBodyOwners setTbWang(String tbWang) { this.tbWang = tbWang; return this; } public String getTbWang() { return this.tbWang; } public GetProcessDefinitionResponseBodyOwners setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public GetProcessDefinitionResponseBodyOwners setUserInfo(String userInfo) { this.userInfo = userInfo; return this; } public String getUserInfo() { return this.userInfo; } } public static class GetProcessDefinitionResponseBodyTasksActivity extends TeaModel { /** * <strong>example:</strong> * <p>act-xxaanfaf</p> */ @NameInMap("ActivityId") public String activityId; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("ActivityInstanceStatus") public String activityInstanceStatus; /** * <strong>example:</strong> * <p>activity-124</p> */ @NameInMap("ActivityName") public String activityName; /** * <strong>example:</strong> * <p>redirect task</p> */ @NameInMap("ActivityNameInEnglish") public String activityNameInEnglish; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("Id") public Long id; public static GetProcessDefinitionResponseBodyTasksActivity build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyTasksActivity self = new GetProcessDefinitionResponseBodyTasksActivity(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyTasksActivity setActivityId(String activityId) { this.activityId = activityId; return this; } public String getActivityId() { return this.activityId; } public GetProcessDefinitionResponseBodyTasksActivity setActivityInstanceStatus(String activityInstanceStatus) { this.activityInstanceStatus = activityInstanceStatus; return this; } public String getActivityInstanceStatus() { return this.activityInstanceStatus; } public GetProcessDefinitionResponseBodyTasksActivity setActivityName(String activityName) { this.activityName = activityName; return this; } public String getActivityName() { return this.activityName; } public GetProcessDefinitionResponseBodyTasksActivity setActivityNameInEnglish(String activityNameInEnglish) { this.activityNameInEnglish = activityNameInEnglish; return this; } public String getActivityNameInEnglish() { return this.activityNameInEnglish; } public GetProcessDefinitionResponseBodyTasksActivity setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } } public static class GetProcessDefinitionResponseBodyTasks extends TeaModel { /** * <strong>example:</strong> * <p>manager123</p> */ @NameInMap("ActionerId") public String actionerId; @NameInMap("Activity") public GetProcessDefinitionResponseBodyTasksActivity activity; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("Status") public String status; /** * <strong>example:</strong> * <p>792</p> */ @NameInMap("TaskId") public Long taskId; public static GetProcessDefinitionResponseBodyTasks build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionResponseBodyTasks self = new GetProcessDefinitionResponseBodyTasks(); return TeaModel.build(map, self); } public GetProcessDefinitionResponseBodyTasks setActionerId(String actionerId) { this.actionerId = actionerId; return this; } public String getActionerId() { return this.actionerId; } public GetProcessDefinitionResponseBodyTasks setActivity(GetProcessDefinitionResponseBodyTasksActivity activity) { this.activity = activity; return this; } public GetProcessDefinitionResponseBodyTasksActivity getActivity() { return this.activity; } public GetProcessDefinitionResponseBodyTasks setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetProcessDefinitionResponseBodyTasks setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetProcessDefinitionShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetProcessDefinitionShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetProcessDefinitionShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetProcessDefinitionShrinkHeaders self = new GetProcessDefinitionShrinkHeaders(); return TeaModel.build(map, self); } public GetProcessDefinitionShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetProcessDefinitionShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetRangeHeadersAccountContext accountContext; public static GetRangeHeaders build(java.util.Map<String, ?> map) throws Exception { GetRangeHeaders self = new GetRangeHeaders(); return TeaModel.build(map, self); } public GetRangeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRangeHeaders setAccountContext(GetRangeHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetRangeHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetRangeHeadersAccountContext extends TeaModel { /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetRangeHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetRangeHeadersAccountContext self = new GetRangeHeadersAccountContext(); return TeaModel.build(map, self); } public GetRangeHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>A3:C3</p> */ @NameInMap("RangeAddress") public String rangeAddress; /** * <strong>example:</strong> * <p>values</p> */ @NameInMap("Select") public String select; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Sheet1</p> */ @NameInMap("SheetId") public String sheetId; @NameInMap("TenantContext") public GetRangeRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>stxxxx</p> */ @NameInMap("WorkbookId") public String workbookId; public static GetRangeRequest build(java.util.Map<String, ?> map) throws Exception { GetRangeRequest self = new GetRangeRequest(); return TeaModel.build(map, self); } public GetRangeRequest setRangeAddress(String rangeAddress) { this.rangeAddress = rangeAddress; return this; } public String getRangeAddress() { return this.rangeAddress; } public GetRangeRequest setSelect(String select) { this.select = select; return this; } public String getSelect() { return this.select; } public GetRangeRequest setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } public GetRangeRequest setTenantContext(GetRangeRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetRangeRequestTenantContext getTenantContext() { return this.tenantContext; } public GetRangeRequest setWorkbookId(String workbookId) { this.workbookId = workbookId; return this; } public String getWorkbookId() { return this.workbookId; } public static class GetRangeRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetRangeRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetRangeRequestTenantContext self = new GetRangeRequestTenantContext(); return TeaModel.build(map, self); } public GetRangeRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetRangeResponseBody body; public static GetRangeResponse build(java.util.Map<String, ?> map) throws Exception { GetRangeResponse self = new GetRangeResponse(); return TeaModel.build(map, self); } public GetRangeResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetRangeResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetRangeResponse setBody(GetRangeResponseBody body) { this.body = body; return this; } public GetRangeResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("backgroundColors") public java.util.List<java.util.List<GetRangeResponseBodyBackgroundColors>> backgroundColors; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("displayValues") public java.util.List<java.util.List<String>> displayValues; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("formulas") public java.util.List<java.util.List<String>> formulas; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("hyperlinks") public java.util.List<java.util.List<GetRangeResponseBodyHyperlinks>> hyperlinks; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("values") public java.util.List<java.util.List<?>> values; public static GetRangeResponseBody build(java.util.Map<String, ?> map) throws Exception { GetRangeResponseBody self = new GetRangeResponseBody(); return TeaModel.build(map, self); } public GetRangeResponseBody setBackgroundColors(java.util.List<java.util.List<GetRangeResponseBodyBackgroundColors>> backgroundColors) { this.backgroundColors = backgroundColors; return this; } public java.util.List<java.util.List<GetRangeResponseBodyBackgroundColors>> getBackgroundColors() { return this.backgroundColors; } public GetRangeResponseBody setDisplayValues(java.util.List<java.util.List<String>> displayValues) { this.displayValues = displayValues; return this; } public java.util.List<java.util.List<String>> getDisplayValues() { return this.displayValues; } public GetRangeResponseBody setFormulas(java.util.List<java.util.List<String>> formulas) { this.formulas = formulas; return this; } public java.util.List<java.util.List<String>> getFormulas() { return this.formulas; } public GetRangeResponseBody setHyperlinks(java.util.List<java.util.List<GetRangeResponseBodyHyperlinks>> hyperlinks) { this.hyperlinks = hyperlinks; return this; } public java.util.List<java.util.List<GetRangeResponseBodyHyperlinks>> getHyperlinks() { return this.hyperlinks; } public GetRangeResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetRangeResponseBody setValues(java.util.List<java.util.List<?>> values) { this.values = values; return this; } public java.util.List<java.util.List<?>> getValues() { return this.values; } public static class GetRangeResponseBodyBackgroundColors extends TeaModel { /** * <p>red</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("Red") public Integer red; /** * <p>green</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("Green") public Integer green; /** * <p>blue</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("Blue") public Integer blue; /** * <p>hexString</p> * * <strong>example:</strong> * <p>#000000</p> */ @NameInMap("HexString") public String hexString; public static GetRangeResponseBodyBackgroundColors build(java.util.Map<String, ?> map) throws Exception { GetRangeResponseBodyBackgroundColors self = new GetRangeResponseBodyBackgroundColors(); return TeaModel.build(map, self); } public GetRangeResponseBodyBackgroundColors setRed(Integer red) { this.red = red; return this; } public Integer getRed() { return this.red; } public GetRangeResponseBodyBackgroundColors setGreen(Integer green) { this.green = green; return this; } public Integer getGreen() { return this.green; } public GetRangeResponseBodyBackgroundColors setBlue(Integer blue) { this.blue = blue; return this; } public Integer getBlue() { return this.blue; } public GetRangeResponseBodyBackgroundColors setHexString(String hexString) { this.hexString = hexString; return this; } public String getHexString() { return this.hexString; } } public static class GetRangeResponseBodyHyperlinks extends TeaModel { @NameInMap("type") public String type; @NameInMap("link") public String link; @NameInMap("text") public String text; public static GetRangeResponseBodyHyperlinks build(java.util.Map<String, ?> map) throws Exception { GetRangeResponseBodyHyperlinks self = new GetRangeResponseBodyHyperlinks(); return TeaModel.build(map, self); } public GetRangeResponseBodyHyperlinks setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public GetRangeResponseBodyHyperlinks setLink(String link) { this.link = link; return this; } public String getLink() { return this.link; } public GetRangeResponseBodyHyperlinks setText(String text) { this.text = text; return this; } public String getText() { return this.text; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetRangeShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetRangeShrinkHeaders self = new GetRangeShrinkHeaders(); return TeaModel.build(map, self); } public GetRangeShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRangeShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRangeShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRangeShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>A3:C3</p> */ @NameInMap("RangeAddress") public String rangeAddress; /** * <strong>example:</strong> * <p>values</p> */ @NameInMap("Select") public String select; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Sheet1</p> */ @NameInMap("SheetId") public String sheetId; @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>stxxxx</p> */ @NameInMap("WorkbookId") public String workbookId; public static GetRangeShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetRangeShrinkRequest self = new GetRangeShrinkRequest(); return TeaModel.build(map, self); } public GetRangeShrinkRequest setRangeAddress(String rangeAddress) { this.rangeAddress = rangeAddress; return this; } public String getRangeAddress() { return this.rangeAddress; } public GetRangeShrinkRequest setSelect(String select) { this.select = select; return this; } public String getSelect() { return this.select; } public GetRangeShrinkRequest setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } public GetRangeShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public GetRangeShrinkRequest setWorkbookId(String workbookId) { this.workbookId = workbookId; return this; } public String getWorkbookId() { return this.workbookId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetRelatedWorkspacesHeadersAccountContext accountContext; public static GetRelatedWorkspacesHeaders build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesHeaders self = new GetRelatedWorkspacesHeaders(); return TeaModel.build(map, self); } public GetRelatedWorkspacesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRelatedWorkspacesHeaders setAccountContext(GetRelatedWorkspacesHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetRelatedWorkspacesHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetRelatedWorkspacesHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetRelatedWorkspacesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesHeadersAccountContext self = new GetRelatedWorkspacesHeadersAccountContext(); return TeaModel.build(map, self); } public GetRelatedWorkspacesHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesRequest extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IncludeRecent") public Boolean includeRecent; @NameInMap("TenantContext") public GetRelatedWorkspacesRequestTenantContext tenantContext; public static GetRelatedWorkspacesRequest build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesRequest self = new GetRelatedWorkspacesRequest(); return TeaModel.build(map, self); } public GetRelatedWorkspacesRequest setIncludeRecent(Boolean includeRecent) { this.includeRecent = includeRecent; return this; } public Boolean getIncludeRecent() { return this.includeRecent; } public GetRelatedWorkspacesRequest setTenantContext(GetRelatedWorkspacesRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetRelatedWorkspacesRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetRelatedWorkspacesRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetRelatedWorkspacesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesRequestTenantContext self = new GetRelatedWorkspacesRequestTenantContext(); return TeaModel.build(map, self); } public GetRelatedWorkspacesRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetRelatedWorkspacesResponseBody body; public static GetRelatedWorkspacesResponse build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesResponse self = new GetRelatedWorkspacesResponse(); return TeaModel.build(map, self); } public GetRelatedWorkspacesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetRelatedWorkspacesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetRelatedWorkspacesResponse setBody(GetRelatedWorkspacesResponseBody body) { this.body = body; return this; } public GetRelatedWorkspacesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; @NameInMap("workspaces") public java.util.List<GetRelatedWorkspacesResponseBodyWorkspaces> workspaces; public static GetRelatedWorkspacesResponseBody build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesResponseBody self = new GetRelatedWorkspacesResponseBody(); return TeaModel.build(map, self); } public GetRelatedWorkspacesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetRelatedWorkspacesResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetRelatedWorkspacesResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public GetRelatedWorkspacesResponseBody setWorkspaces(java.util.List<GetRelatedWorkspacesResponseBodyWorkspaces> workspaces) { this.workspaces = workspaces; return this; } public java.util.List<GetRelatedWorkspacesResponseBodyWorkspaces> getWorkspaces() { return this.workspaces; } public static class GetRelatedWorkspacesResponseBodyWorkspacesRecentList extends TeaModel { /** * <strong>example:</strong> * <p>1638256965936</p> */ @NameInMap("LastEditTime") public Long lastEditTime; /** * <strong>example:</strong> * <p>知识库</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>nb9XxxxxxxmyAp</p> */ @NameInMap("NodeId") public String nodeId; /** * <strong>example:</strong> * <p><a href="https://alidocs.xxxx/nb9XJKdxxxxmyAp">https://alidocs.xxxx/nb9XJKdxxxxmyAp</a></p> */ @NameInMap("Url") public String url; public static GetRelatedWorkspacesResponseBodyWorkspacesRecentList build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesResponseBodyWorkspacesRecentList self = new GetRelatedWorkspacesResponseBodyWorkspacesRecentList(); return TeaModel.build(map, self); } public GetRelatedWorkspacesResponseBodyWorkspacesRecentList setLastEditTime(Long lastEditTime) { this.lastEditTime = lastEditTime; return this; } public Long getLastEditTime() { return this.lastEditTime; } public GetRelatedWorkspacesResponseBodyWorkspacesRecentList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetRelatedWorkspacesResponseBodyWorkspacesRecentList setNodeId(String nodeId) { this.nodeId = nodeId; return this; } public String getNodeId() { return this.nodeId; } public GetRelatedWorkspacesResponseBodyWorkspacesRecentList setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } } public static class GetRelatedWorkspacesResponseBodyWorkspaces extends TeaModel { /** * <strong>example:</strong> * <p>1638256965936</p> */ @NameInMap("CreateTime") public Long createTime; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("Deleted") public Boolean deleted; /** * <strong>example:</strong> * <p>知识库</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>Q2xwPOKiSLxxxx</p> */ @NameInMap("Owner") public String owner; @NameInMap("RecentList") public java.util.List<GetRelatedWorkspacesResponseBodyWorkspacesRecentList> recentList; /** * <strong>example:</strong> * <p>OWNER</p> */ @NameInMap("Role") public String role; /** * <strong>example:</strong> * <p><a href="https://alidocs.xxxx/nb9XJKdxxxxmyAp/docs/nb9XxxxxxxmyAp">https://alidocs.xxxx/nb9XJKdxxxxmyAp/docs/nb9XxxxxxxmyAp</a></p> */ @NameInMap("Url") public String url; /** * <strong>example:</strong> * <p>nb9XJKdxxxxmyAp</p> */ @NameInMap("WorkspaceId") public String workspaceId; public static GetRelatedWorkspacesResponseBodyWorkspaces build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesResponseBodyWorkspaces self = new GetRelatedWorkspacesResponseBodyWorkspaces(); return TeaModel.build(map, self); } public GetRelatedWorkspacesResponseBodyWorkspaces setCreateTime(Long createTime) { this.createTime = createTime; return this; } public Long getCreateTime() { return this.createTime; } public GetRelatedWorkspacesResponseBodyWorkspaces setDeleted(Boolean deleted) { this.deleted = deleted; return this; } public Boolean getDeleted() { return this.deleted; } public GetRelatedWorkspacesResponseBodyWorkspaces setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetRelatedWorkspacesResponseBodyWorkspaces setOwner(String owner) { this.owner = owner; return this; } public String getOwner() { return this.owner; } public GetRelatedWorkspacesResponseBodyWorkspaces setRecentList(java.util.List<GetRelatedWorkspacesResponseBodyWorkspacesRecentList> recentList) { this.recentList = recentList; return this; } public java.util.List<GetRelatedWorkspacesResponseBodyWorkspacesRecentList> getRecentList() { return this.recentList; } public GetRelatedWorkspacesResponseBodyWorkspaces setRole(String role) { this.role = role; return this; } public String getRole() { return this.role; } public GetRelatedWorkspacesResponseBodyWorkspaces setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public GetRelatedWorkspacesResponseBodyWorkspaces setWorkspaceId(String workspaceId) { this.workspaceId = workspaceId; return this; } public String getWorkspaceId() { return this.workspaceId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetRelatedWorkspacesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesShrinkHeaders self = new GetRelatedWorkspacesShrinkHeaders(); return TeaModel.build(map, self); } public GetRelatedWorkspacesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRelatedWorkspacesShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRelatedWorkspacesShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRelatedWorkspacesShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IncludeRecent") public Boolean includeRecent; @NameInMap("TenantContext") public String tenantContextShrink; public static GetRelatedWorkspacesShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetRelatedWorkspacesShrinkRequest self = new GetRelatedWorkspacesShrinkRequest(); return TeaModel.build(map, self); } public GetRelatedWorkspacesShrinkRequest setIncludeRecent(Boolean includeRecent) { this.includeRecent = includeRecent; return this; } public Boolean getIncludeRecent() { return this.includeRecent; } public GetRelatedWorkspacesShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetReportTemplateByNameHeadersAccountContext accountContext; public static GetReportTemplateByNameHeaders build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameHeaders self = new GetReportTemplateByNameHeaders(); return TeaModel.build(map, self); } public GetReportTemplateByNameHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetReportTemplateByNameHeaders setAccountContext(GetReportTemplateByNameHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetReportTemplateByNameHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetReportTemplateByNameHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetReportTemplateByNameHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameHeadersAccountContext self = new GetReportTemplateByNameHeadersAccountContext(); return TeaModel.build(map, self); } public GetReportTemplateByNameHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>我管理的模版</p> */ @NameInMap("TemplateName") public String templateName; @NameInMap("TenantContext") public GetReportTemplateByNameRequestTenantContext tenantContext; public static GetReportTemplateByNameRequest build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameRequest self = new GetReportTemplateByNameRequest(); return TeaModel.build(map, self); } public GetReportTemplateByNameRequest setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } public GetReportTemplateByNameRequest setTenantContext(GetReportTemplateByNameRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetReportTemplateByNameRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetReportTemplateByNameRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetReportTemplateByNameRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameRequestTenantContext self = new GetReportTemplateByNameRequestTenantContext(); return TeaModel.build(map, self); } public GetReportTemplateByNameRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetReportTemplateByNameResponseBody body; public static GetReportTemplateByNameResponse build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameResponse self = new GetReportTemplateByNameResponse(); return TeaModel.build(map, self); } public GetReportTemplateByNameResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetReportTemplateByNameResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetReportTemplateByNameResponse setBody(GetReportTemplateByNameResponseBody body) { this.body = body; return this; } public GetReportTemplateByNameResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameResponseBody extends TeaModel { @NameInMap("defaultReceivedConvs") public java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivedConvs> defaultReceivedConvs; @NameInMap("defaultReceivers") public java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivers> defaultReceivers; @NameInMap("fields") public java.util.List<GetReportTemplateByNameResponseBodyFields> fields; /** * <strong>example:</strong> * <p>11111</p> */ @NameInMap("id") public String id; @NameInMap("name") public String name; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("userName") public String userName; /** * <strong>example:</strong> * <p>1234</p> */ @NameInMap("userid") public String userid; public static GetReportTemplateByNameResponseBody build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameResponseBody self = new GetReportTemplateByNameResponseBody(); return TeaModel.build(map, self); } public GetReportTemplateByNameResponseBody setDefaultReceivedConvs(java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivedConvs> defaultReceivedConvs) { this.defaultReceivedConvs = defaultReceivedConvs; return this; } public java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivedConvs> getDefaultReceivedConvs() { return this.defaultReceivedConvs; } public GetReportTemplateByNameResponseBody setDefaultReceivers(java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivers> defaultReceivers) { this.defaultReceivers = defaultReceivers; return this; } public java.util.List<GetReportTemplateByNameResponseBodyDefaultReceivers> getDefaultReceivers() { return this.defaultReceivers; } public GetReportTemplateByNameResponseBody setFields(java.util.List<GetReportTemplateByNameResponseBodyFields> fields) { this.fields = fields; return this; } public java.util.List<GetReportTemplateByNameResponseBodyFields> getFields() { return this.fields; } public GetReportTemplateByNameResponseBody setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public GetReportTemplateByNameResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetReportTemplateByNameResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetReportTemplateByNameResponseBody setUserName(String userName) { this.userName = userName; return this; } public String getUserName() { return this.userName; } public GetReportTemplateByNameResponseBody setUserid(String userid) { this.userid = userid; return this; } public String getUserid() { return this.userid; } public static class GetReportTemplateByNameResponseBodyDefaultReceivedConvs extends TeaModel { /** * <strong>example:</strong> * <p>cid12334##2341</p> */ @NameInMap("ConversationId") public String conversationId; @NameInMap("Title") public String title; public static GetReportTemplateByNameResponseBodyDefaultReceivedConvs build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameResponseBodyDefaultReceivedConvs self = new GetReportTemplateByNameResponseBodyDefaultReceivedConvs(); return TeaModel.build(map, self); } public GetReportTemplateByNameResponseBodyDefaultReceivedConvs setConversationId(String conversationId) { this.conversationId = conversationId; return this; } public String getConversationId() { return this.conversationId; } public GetReportTemplateByNameResponseBodyDefaultReceivedConvs setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } public static class GetReportTemplateByNameResponseBodyDefaultReceivers extends TeaModel { @NameInMap("UserName") public String userName; /** * <strong>example:</strong> * <p>1234</p> */ @NameInMap("Userid") public String userid; public static GetReportTemplateByNameResponseBodyDefaultReceivers build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameResponseBodyDefaultReceivers self = new GetReportTemplateByNameResponseBodyDefaultReceivers(); return TeaModel.build(map, self); } public GetReportTemplateByNameResponseBodyDefaultReceivers setUserName(String userName) { this.userName = userName; return this; } public String getUserName() { return this.userName; } public GetReportTemplateByNameResponseBodyDefaultReceivers setUserid(String userid) { this.userid = userid; return this; } public String getUserid() { return this.userid; } } public static class GetReportTemplateByNameResponseBodyFields extends TeaModel { /** * <strong>example:</strong> * <p>key1</p> */ @NameInMap("FieldName") public String fieldName; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("Sort") public Long sort; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Type") public Long type; public static GetReportTemplateByNameResponseBodyFields build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameResponseBodyFields self = new GetReportTemplateByNameResponseBodyFields(); return TeaModel.build(map, self); } public GetReportTemplateByNameResponseBodyFields setFieldName(String fieldName) { this.fieldName = fieldName; return this; } public String getFieldName() { return this.fieldName; } public GetReportTemplateByNameResponseBodyFields setSort(Long sort) { this.sort = sort; return this; } public Long getSort() { return this.sort; } public GetReportTemplateByNameResponseBodyFields setType(Long type) { this.type = type; return this; } public Long getType() { return this.type; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetReportTemplateByNameShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameShrinkHeaders self = new GetReportTemplateByNameShrinkHeaders(); return TeaModel.build(map, self); } public GetReportTemplateByNameShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetReportTemplateByNameShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportTemplateByNameShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportTemplateByNameShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>我管理的模版</p> */ @NameInMap("TemplateName") public String templateName; @NameInMap("TenantContext") public String tenantContextShrink; public static GetReportTemplateByNameShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetReportTemplateByNameShrinkRequest self = new GetReportTemplateByNameShrinkRequest(); return TeaModel.build(map, self); } public GetReportTemplateByNameShrinkRequest setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } public GetReportTemplateByNameShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetReportUnReadCountHeadersAccountContext accountContext; public static GetReportUnReadCountHeaders build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountHeaders self = new GetReportUnReadCountHeaders(); return TeaModel.build(map, self); } public GetReportUnReadCountHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetReportUnReadCountHeaders setAccountContext(GetReportUnReadCountHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetReportUnReadCountHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetReportUnReadCountHeadersAccountContext extends TeaModel { /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetReportUnReadCountHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountHeadersAccountContext self = new GetReportUnReadCountHeadersAccountContext(); return TeaModel.build(map, self); } public GetReportUnReadCountHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountRequest extends TeaModel { /** * <strong>example:</strong> * <p>null</p> */ @NameInMap("Request") public java.util.Map<String, ?> request; @NameInMap("TenantContext") public GetReportUnReadCountRequestTenantContext tenantContext; public static GetReportUnReadCountRequest build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountRequest self = new GetReportUnReadCountRequest(); return TeaModel.build(map, self); } public GetReportUnReadCountRequest setRequest(java.util.Map<String, ?> request) { this.request = request; return this; } public java.util.Map<String, ?> getRequest() { return this.request; } public GetReportUnReadCountRequest setTenantContext(GetReportUnReadCountRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetReportUnReadCountRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetReportUnReadCountRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetReportUnReadCountRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountRequestTenantContext self = new GetReportUnReadCountRequestTenantContext(); return TeaModel.build(map, self); } public GetReportUnReadCountRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetReportUnReadCountResponseBody body; public static GetReportUnReadCountResponse build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountResponse self = new GetReportUnReadCountResponse(); return TeaModel.build(map, self); } public GetReportUnReadCountResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetReportUnReadCountResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetReportUnReadCountResponse setBody(GetReportUnReadCountResponseBody body) { this.body = body; return this; } public GetReportUnReadCountResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("count") public Long count; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; public static GetReportUnReadCountResponseBody build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountResponseBody self = new GetReportUnReadCountResponseBody(); return TeaModel.build(map, self); } public GetReportUnReadCountResponseBody setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public GetReportUnReadCountResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetReportUnReadCountShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountShrinkHeaders self = new GetReportUnReadCountShrinkHeaders(); return TeaModel.build(map, self); } public GetReportUnReadCountShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetReportUnReadCountShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetReportUnReadCountShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetReportUnReadCountShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>null</p> */ @NameInMap("Request") public String requestShrink; @NameInMap("TenantContext") public String tenantContextShrink; public static GetReportUnReadCountShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetReportUnReadCountShrinkRequest self = new GetReportUnReadCountShrinkRequest(); return TeaModel.build(map, self); } public GetReportUnReadCountShrinkRequest setRequestShrink(String requestShrink) { this.requestShrink = requestShrink; return this; } public String getRequestShrink() { return this.requestShrink; } public GetReportUnReadCountShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRunningTasksHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRunningTasksHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetRunningTasksHeadersAccountContext accountContext; public static GetRunningTasksHeaders build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksHeaders self = new GetRunningTasksHeaders(); return TeaModel.build(map, self); } public GetRunningTasksHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRunningTasksHeaders setAccountContext(GetRunningTasksHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetRunningTasksHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetRunningTasksHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetRunningTasksHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksHeadersAccountContext self = new GetRunningTasksHeadersAccountContext(); return TeaModel.build(map, self); } public GetRunningTasksHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRunningTasksRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRunningTasksRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>APP_PBKxxx</p> */ @NameInMap("AppType") public String appType; /** * <strong>example:</strong> * <p>zh-CN</p> */ @NameInMap("Language") public String language; /** * <strong>example:</strong> * <p>[&quot;xx&quot;,&quot;xxx&quot;]</p> */ @NameInMap("ProcessCodes") public String processCodes; /** * <strong>example:</strong> * <p>instxxxxx</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>hexxxx</p> */ @NameInMap("SystemToken") public String systemToken; public static GetRunningTasksRequest build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksRequest self = new GetRunningTasksRequest(); return TeaModel.build(map, self); } public GetRunningTasksRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetRunningTasksRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetRunningTasksRequest setProcessCodes(String processCodes) { this.processCodes = processCodes; return this; } public String getProcessCodes() { return this.processCodes; } public GetRunningTasksRequest setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetRunningTasksRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRunningTasksResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRunningTasksResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetRunningTasksResponseBody body; public static GetRunningTasksResponse build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksResponse self = new GetRunningTasksResponse(); return TeaModel.build(map, self); } public GetRunningTasksResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetRunningTasksResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetRunningTasksResponse setBody(GetRunningTasksResponseBody body) { this.body = body; return this; } public GetRunningTasksResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRunningTasksResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRunningTasksResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>[{}]</p> */ @NameInMap("result") public java.util.List<GetRunningTasksResponseBodyResult> result; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetRunningTasksResponseBody build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksResponseBody self = new GetRunningTasksResponseBody(); return TeaModel.build(map, self); } public GetRunningTasksResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetRunningTasksResponseBody setResult(java.util.List<GetRunningTasksResponseBodyResult> result) { this.result = result; return this; } public java.util.List<GetRunningTasksResponseBodyResult> getResult() { return this.result; } public GetRunningTasksResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetRunningTasksResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetRunningTasksResponseBodyResult extends TeaModel { /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("ActiveTimeGMT") public String activeTimeGMT; /** * <strong>example:</strong> * <p>act-xxaanfaf</p> */ @NameInMap("ActivityId") public String activityId; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("ActualActionerId") public String actualActionerId; /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("CreateTimeGMT") public String createTimeGMT; /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("FinishTimeGMT") public String finishTimeGMT; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("OriginatorId") public String originatorId; /** * <strong>example:</strong> * <p>instancexxxx</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("Status") public String status; /** * <strong>example:</strong> * <p>taskId</p> */ @NameInMap("TaskId") public String taskId; /** * <strong>example:</strong> * <p>append task</p> */ @NameInMap("TaskType") public String taskType; /** * <strong>example:</strong> * <p>标题</p> */ @NameInMap("Title") public String title; /** * <strong>example:</strong> * <p>title</p> */ @NameInMap("TitleInEnglish") public String titleInEnglish; public static GetRunningTasksResponseBodyResult build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksResponseBodyResult self = new GetRunningTasksResponseBodyResult(); return TeaModel.build(map, self); } public GetRunningTasksResponseBodyResult setActiveTimeGMT(String activeTimeGMT) { this.activeTimeGMT = activeTimeGMT; return this; } public String getActiveTimeGMT() { return this.activeTimeGMT; } public GetRunningTasksResponseBodyResult setActivityId(String activityId) { this.activityId = activityId; return this; } public String getActivityId() { return this.activityId; } public GetRunningTasksResponseBodyResult setActualActionerId(String actualActionerId) { this.actualActionerId = actualActionerId; return this; } public String getActualActionerId() { return this.actualActionerId; } public GetRunningTasksResponseBodyResult setCreateTimeGMT(String createTimeGMT) { this.createTimeGMT = createTimeGMT; return this; } public String getCreateTimeGMT() { return this.createTimeGMT; } public GetRunningTasksResponseBodyResult setFinishTimeGMT(String finishTimeGMT) { this.finishTimeGMT = finishTimeGMT; return this; } public String getFinishTimeGMT() { return this.finishTimeGMT; } public GetRunningTasksResponseBodyResult setOriginatorId(String originatorId) { this.originatorId = originatorId; return this; } public String getOriginatorId() { return this.originatorId; } public GetRunningTasksResponseBodyResult setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetRunningTasksResponseBodyResult setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetRunningTasksResponseBodyResult setTaskId(String taskId) { this.taskId = taskId; return this; } public String getTaskId() { return this.taskId; } public GetRunningTasksResponseBodyResult setTaskType(String taskType) { this.taskType = taskType; return this; } public String getTaskType() { return this.taskType; } public GetRunningTasksResponseBodyResult setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public GetRunningTasksResponseBodyResult setTitleInEnglish(String titleInEnglish) { this.titleInEnglish = titleInEnglish; return this; } public String getTitleInEnglish() { return this.titleInEnglish; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetRunningTasksShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetRunningTasksShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetRunningTasksShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetRunningTasksShrinkHeaders self = new GetRunningTasksShrinkHeaders(); return TeaModel.build(map, self); } public GetRunningTasksShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetRunningTasksShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetScheduleHeadersAccountContext accountContext; public static GetScheduleHeaders build(java.util.Map<String, ?> map) throws Exception { GetScheduleHeaders self = new GetScheduleHeaders(); return TeaModel.build(map, self); } public GetScheduleHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetScheduleHeaders setAccountContext(GetScheduleHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetScheduleHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetScheduleHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetScheduleHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetScheduleHeadersAccountContext self = new GetScheduleHeadersAccountContext(); return TeaModel.build(map, self); } public GetScheduleHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleRequest extends TeaModel { /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("EndTime") public String endTime; /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("StartTime") public String startTime; @NameInMap("TenantContext") public GetScheduleRequestTenantContext tenantContext; @NameInMap("UserIds") public java.util.List<String> userIds; public static GetScheduleRequest build(java.util.Map<String, ?> map) throws Exception { GetScheduleRequest self = new GetScheduleRequest(); return TeaModel.build(map, self); } public GetScheduleRequest setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public GetScheduleRequest setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } public GetScheduleRequest setTenantContext(GetScheduleRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetScheduleRequestTenantContext getTenantContext() { return this.tenantContext; } public GetScheduleRequest setUserIds(java.util.List<String> userIds) { this.userIds = userIds; return this; } public java.util.List<String> getUserIds() { return this.userIds; } public static class GetScheduleRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetScheduleRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetScheduleRequestTenantContext self = new GetScheduleRequestTenantContext(); return TeaModel.build(map, self); } public GetScheduleRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetScheduleResponseBody body; public static GetScheduleResponse build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponse self = new GetScheduleResponse(); return TeaModel.build(map, self); } public GetScheduleResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetScheduleResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetScheduleResponse setBody(GetScheduleResponseBody body) { this.body = body; return this; } public GetScheduleResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("scheduleInformation") public java.util.List<GetScheduleResponseBodyScheduleInformation> scheduleInformation; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetScheduleResponseBody build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponseBody self = new GetScheduleResponseBody(); return TeaModel.build(map, self); } public GetScheduleResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetScheduleResponseBody setScheduleInformation(java.util.List<GetScheduleResponseBodyScheduleInformation> scheduleInformation) { this.scheduleInformation = scheduleInformation; return this; } public java.util.List<GetScheduleResponseBodyScheduleInformation> getScheduleInformation() { return this.scheduleInformation; } public GetScheduleResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetScheduleResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetScheduleResponseBodyScheduleInformationScheduleItemsEnd extends TeaModel { /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("Date") public String date; /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("DateTime") public String dateTime; /** * <strong>example:</strong> * <p>Asia/Shanghai</p> */ @NameInMap("TimeZone") public String timeZone; public static GetScheduleResponseBodyScheduleInformationScheduleItemsEnd build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponseBodyScheduleInformationScheduleItemsEnd self = new GetScheduleResponseBodyScheduleInformationScheduleItemsEnd(); return TeaModel.build(map, self); } public GetScheduleResponseBodyScheduleInformationScheduleItemsEnd setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public GetScheduleResponseBodyScheduleInformationScheduleItemsEnd setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public GetScheduleResponseBodyScheduleInformationScheduleItemsEnd setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } public static class GetScheduleResponseBodyScheduleInformationScheduleItemsStart extends TeaModel { /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("Date") public String date; /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("DateTime") public String dateTime; /** * <strong>example:</strong> * <p>Asia/Shanghai</p> */ @NameInMap("TimeZone") public String timeZone; public static GetScheduleResponseBodyScheduleInformationScheduleItemsStart build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponseBodyScheduleInformationScheduleItemsStart self = new GetScheduleResponseBodyScheduleInformationScheduleItemsStart(); return TeaModel.build(map, self); } public GetScheduleResponseBodyScheduleInformationScheduleItemsStart setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public GetScheduleResponseBodyScheduleInformationScheduleItemsStart setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public GetScheduleResponseBodyScheduleInformationScheduleItemsStart setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } public static class GetScheduleResponseBodyScheduleInformationScheduleItems extends TeaModel { @NameInMap("End") public GetScheduleResponseBodyScheduleInformationScheduleItemsEnd end; @NameInMap("Start") public GetScheduleResponseBodyScheduleInformationScheduleItemsStart start; /** * <strong>example:</strong> * <p>BUSY</p> */ @NameInMap("Status") public String status; public static GetScheduleResponseBodyScheduleInformationScheduleItems build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponseBodyScheduleInformationScheduleItems self = new GetScheduleResponseBodyScheduleInformationScheduleItems(); return TeaModel.build(map, self); } public GetScheduleResponseBodyScheduleInformationScheduleItems setEnd(GetScheduleResponseBodyScheduleInformationScheduleItemsEnd end) { this.end = end; return this; } public GetScheduleResponseBodyScheduleInformationScheduleItemsEnd getEnd() { return this.end; } public GetScheduleResponseBodyScheduleInformationScheduleItems setStart(GetScheduleResponseBodyScheduleInformationScheduleItemsStart start) { this.start = start; return this; } public GetScheduleResponseBodyScheduleInformationScheduleItemsStart getStart() { return this.start; } public GetScheduleResponseBodyScheduleInformationScheduleItems setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } } public static class GetScheduleResponseBodyScheduleInformation extends TeaModel { /** * <strong>example:</strong> * <p>无权限</p> */ @NameInMap("Error") public String error; @NameInMap("ScheduleItems") public java.util.List<GetScheduleResponseBodyScheduleInformationScheduleItems> scheduleItems; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetScheduleResponseBodyScheduleInformation build(java.util.Map<String, ?> map) throws Exception { GetScheduleResponseBodyScheduleInformation self = new GetScheduleResponseBodyScheduleInformation(); return TeaModel.build(map, self); } public GetScheduleResponseBodyScheduleInformation setError(String error) { this.error = error; return this; } public String getError() { return this.error; } public GetScheduleResponseBodyScheduleInformation setScheduleItems(java.util.List<GetScheduleResponseBodyScheduleInformationScheduleItems> scheduleItems) { this.scheduleItems = scheduleItems; return this; } public java.util.List<GetScheduleResponseBodyScheduleInformationScheduleItems> getScheduleItems() { return this.scheduleItems; } public GetScheduleResponseBodyScheduleInformation setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetScheduleShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetScheduleShrinkHeaders self = new GetScheduleShrinkHeaders(); return TeaModel.build(map, self); } public GetScheduleShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetScheduleShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetScheduleShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetScheduleShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("EndTime") public String endTime; /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("StartTime") public String startTime; @NameInMap("TenantContext") public String tenantContextShrink; @NameInMap("UserIds") public String userIdsShrink; public static GetScheduleShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetScheduleShrinkRequest self = new GetScheduleShrinkRequest(); return TeaModel.build(map, self); } public GetScheduleShrinkRequest setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public GetScheduleShrinkRequest setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } public GetScheduleShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public GetScheduleShrinkRequest setUserIdsShrink(String userIdsShrink) { this.userIdsShrink = userIdsShrink; return this; } public String getUserIdsShrink() { return this.userIdsShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetSheetContentJobIdHeadersAccountContext accountContext; public static GetSheetContentJobIdHeaders build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdHeaders self = new GetSheetContentJobIdHeaders(); return TeaModel.build(map, self); } public GetSheetContentJobIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSheetContentJobIdHeaders setAccountContext(GetSheetContentJobIdHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetSheetContentJobIdHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetSheetContentJobIdHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetSheetContentJobIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdHeadersAccountContext self = new GetSheetContentJobIdHeadersAccountContext(); return TeaModel.build(map, self); } public GetSheetContentJobIdHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdRequest extends TeaModel { /** * <strong>example:</strong> * <p>MNDoBb60VLYDGNPytQe7Gzp4JlemrZQ3</p> */ @NameInMap("DentryUuid") public String dentryUuid; /** * <strong>example:</strong> * <p>dingTalksheetToxlsx</p> */ @NameInMap("ExportType") public String exportType; @NameInMap("TenantContext") public GetSheetContentJobIdRequestTenantContext tenantContext; public static GetSheetContentJobIdRequest build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdRequest self = new GetSheetContentJobIdRequest(); return TeaModel.build(map, self); } public GetSheetContentJobIdRequest setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public GetSheetContentJobIdRequest setExportType(String exportType) { this.exportType = exportType; return this; } public String getExportType() { return this.exportType; } public GetSheetContentJobIdRequest setTenantContext(GetSheetContentJobIdRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetSheetContentJobIdRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetSheetContentJobIdRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetSheetContentJobIdRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdRequestTenantContext self = new GetSheetContentJobIdRequestTenantContext(); return TeaModel.build(map, self); } public GetSheetContentJobIdRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetSheetContentJobIdResponseBody body; public static GetSheetContentJobIdResponse build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdResponse self = new GetSheetContentJobIdResponse(); return TeaModel.build(map, self); } public GetSheetContentJobIdResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetSheetContentJobIdResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetSheetContentJobIdResponse setBody(GetSheetContentJobIdResponseBody body) { this.body = body; return this; } public GetSheetContentJobIdResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>14640056080</p> */ @NameInMap("jobId") public String jobId; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>init</p> */ @NameInMap("status") public String status; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetSheetContentJobIdResponseBody build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdResponseBody self = new GetSheetContentJobIdResponseBody(); return TeaModel.build(map, self); } public GetSheetContentJobIdResponseBody setJobId(String jobId) { this.jobId = jobId; return this; } public String getJobId() { return this.jobId; } public GetSheetContentJobIdResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetSheetContentJobIdResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public GetSheetContentJobIdResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetSheetContentJobIdResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetSheetContentJobIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdShrinkHeaders self = new GetSheetContentJobIdShrinkHeaders(); return TeaModel.build(map, self); } public GetSheetContentJobIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSheetContentJobIdShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetContentJobIdShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetContentJobIdShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>MNDoBb60VLYDGNPytQe7Gzp4JlemrZQ3</p> */ @NameInMap("DentryUuid") public String dentryUuid; /** * <strong>example:</strong> * <p>dingTalksheetToxlsx</p> */ @NameInMap("ExportType") public String exportType; @NameInMap("TenantContext") public String tenantContextShrink; public static GetSheetContentJobIdShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetSheetContentJobIdShrinkRequest self = new GetSheetContentJobIdShrinkRequest(); return TeaModel.build(map, self); } public GetSheetContentJobIdShrinkRequest setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public GetSheetContentJobIdShrinkRequest setExportType(String exportType) { this.exportType = exportType; return this; } public String getExportType() { return this.exportType; } public GetSheetContentJobIdShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetSheetHeadersAccountContext accountContext; public static GetSheetHeaders build(java.util.Map<String, ?> map) throws Exception { GetSheetHeaders self = new GetSheetHeaders(); return TeaModel.build(map, self); } public GetSheetHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSheetHeaders setAccountContext(GetSheetHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetSheetHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetSheetHeadersAccountContext extends TeaModel { /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetSheetHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetSheetHeadersAccountContext self = new GetSheetHeadersAccountContext(); return TeaModel.build(map, self); } public GetSheetHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Sheet1</p> */ @NameInMap("SheetId") public String sheetId; @NameInMap("TenantContext") public GetSheetRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>stxxxx</p> */ @NameInMap("WorkbookId") public String workbookId; public static GetSheetRequest build(java.util.Map<String, ?> map) throws Exception { GetSheetRequest self = new GetSheetRequest(); return TeaModel.build(map, self); } public GetSheetRequest setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } public GetSheetRequest setTenantContext(GetSheetRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetSheetRequestTenantContext getTenantContext() { return this.tenantContext; } public GetSheetRequest setWorkbookId(String workbookId) { this.workbookId = workbookId; return this; } public String getWorkbookId() { return this.workbookId; } public static class GetSheetRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetSheetRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetSheetRequestTenantContext self = new GetSheetRequestTenantContext(); return TeaModel.build(map, self); } public GetSheetRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetSheetResponseBody body; public static GetSheetResponse build(java.util.Map<String, ?> map) throws Exception { GetSheetResponse self = new GetSheetResponse(); return TeaModel.build(map, self); } public GetSheetResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetSheetResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetSheetResponse setBody(GetSheetResponseBody body) { this.body = body; return this; } public GetSheetResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("columnCount") public Long columnCount; /** * <strong>example:</strong> * <p>stxxxx</p> */ @NameInMap("id") public String id; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("lastNonEmptyColumn") public Long lastNonEmptyColumn; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("lastNonEmptyRow") public Long lastNonEmptyRow; /** * <strong>example:</strong> * <p>Sheet1</p> */ @NameInMap("name") public String name; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("rowCount") public Long rowCount; /** * <strong>example:</strong> * <p>visible</p> */ @NameInMap("visibility") public String visibility; public static GetSheetResponseBody build(java.util.Map<String, ?> map) throws Exception { GetSheetResponseBody self = new GetSheetResponseBody(); return TeaModel.build(map, self); } public GetSheetResponseBody setColumnCount(Long columnCount) { this.columnCount = columnCount; return this; } public Long getColumnCount() { return this.columnCount; } public GetSheetResponseBody setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public GetSheetResponseBody setLastNonEmptyColumn(Long lastNonEmptyColumn) { this.lastNonEmptyColumn = lastNonEmptyColumn; return this; } public Long getLastNonEmptyColumn() { return this.lastNonEmptyColumn; } public GetSheetResponseBody setLastNonEmptyRow(Long lastNonEmptyRow) { this.lastNonEmptyRow = lastNonEmptyRow; return this; } public Long getLastNonEmptyRow() { return this.lastNonEmptyRow; } public GetSheetResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSheetResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetSheetResponseBody setRowCount(Long rowCount) { this.rowCount = rowCount; return this; } public Long getRowCount() { return this.rowCount; } public GetSheetResponseBody setVisibility(String visibility) { this.visibility = visibility; return this; } public String getVisibility() { return this.visibility; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetSheetShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetSheetShrinkHeaders self = new GetSheetShrinkHeaders(); return TeaModel.build(map, self); } public GetSheetShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSheetShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSheetShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSheetShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Sheet1</p> */ @NameInMap("SheetId") public String sheetId; @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>stxxxx</p> */ @NameInMap("WorkbookId") public String workbookId; public static GetSheetShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetSheetShrinkRequest self = new GetSheetShrinkRequest(); return TeaModel.build(map, self); } public GetSheetShrinkRequest setSheetId(String sheetId) { this.sheetId = sheetId; return this; } public String getSheetId() { return this.sheetId; } public GetSheetShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public GetSheetShrinkRequest setWorkbookId(String workbookId) { this.workbookId = workbookId; return this; } public String getWorkbookId() { return this.workbookId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetSpaceDirectoriesHeadersAccountContext accountContext; public static GetSpaceDirectoriesHeaders build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesHeaders self = new GetSpaceDirectoriesHeaders(); return TeaModel.build(map, self); } public GetSpaceDirectoriesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSpaceDirectoriesHeaders setAccountContext(GetSpaceDirectoriesHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetSpaceDirectoriesHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetSpaceDirectoriesHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetSpaceDirectoriesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesHeadersAccountContext self = new GetSpaceDirectoriesHeadersAccountContext(); return TeaModel.build(map, self); } public GetSpaceDirectoriesHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesRequest extends TeaModel { /** * <strong>example:</strong> * <p>asdasd</p> */ @NameInMap("DentryId") public String dentryId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>30</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123123</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>qweqwe</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public GetSpaceDirectoriesRequestTenantContext tenantContext; public static GetSpaceDirectoriesRequest build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesRequest self = new GetSpaceDirectoriesRequest(); return TeaModel.build(map, self); } public GetSpaceDirectoriesRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public GetSpaceDirectoriesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public GetSpaceDirectoriesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public GetSpaceDirectoriesRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public GetSpaceDirectoriesRequest setTenantContext(GetSpaceDirectoriesRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetSpaceDirectoriesRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetSpaceDirectoriesRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetSpaceDirectoriesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesRequestTenantContext self = new GetSpaceDirectoriesRequestTenantContext(); return TeaModel.build(map, self); } public GetSpaceDirectoriesRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetSpaceDirectoriesResponseBody body; public static GetSpaceDirectoriesResponse build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponse self = new GetSpaceDirectoriesResponse(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetSpaceDirectoriesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetSpaceDirectoriesResponse setBody(GetSpaceDirectoriesResponseBody body) { this.body = body; return this; } public GetSpaceDirectoriesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesResponseBody extends TeaModel { @NameInMap("children") public java.util.List<GetSpaceDirectoriesResponseBodyChildren> children; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("hasMore") public Boolean hasMore; /** * <strong>example:</strong> * <p>1296</p> */ @NameInMap("nextToken") public String nextToken; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; public static GetSpaceDirectoriesResponseBody build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBody self = new GetSpaceDirectoriesResponseBody(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBody setChildren(java.util.List<GetSpaceDirectoriesResponseBodyChildren> children) { this.children = children; return this; } public java.util.List<GetSpaceDirectoriesResponseBodyChildren> getChildren() { return this.children; } public GetSpaceDirectoriesResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public GetSpaceDirectoriesResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public GetSpaceDirectoriesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class GetSpaceDirectoriesResponseBodyChildrenCreator extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetSpaceDirectoriesResponseBodyChildrenCreator build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenCreator self = new GetSpaceDirectoriesResponseBodyChildrenCreator(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenCreator setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSpaceDirectoriesResponseBodyChildrenCreator setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl extends TeaModel { /** * <strong>example:</strong> * <p>gh</p> */ @NameInMap("Line") public String line; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Small") public String small; public static GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl self = new GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl setSmall(String small) { this.small = small; return this; } public String getSmall() { return this.small; } } public static class GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo extends TeaModel { /** * <strong>example:</strong> * <p>docx</p> */ @NameInMap("Extension") public String extension; @NameInMap("IconUrl") public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl iconUrl; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Id") public String id; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("LinkType") public Long linkType; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("SpaceId") public String spaceId; public static GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo self = new GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo setIconUrl(GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl iconUrl) { this.iconUrl = iconUrl; return this; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfoIconUrl getIconUrl() { return this.iconUrl; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo setLinkType(Long linkType) { this.linkType = linkType; return this; } public Long getLinkType() { return this.linkType; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } } public static class GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO extends TeaModel { /** * <strong>example:</strong> * <p><a href="https://img.alicdn.com/imgextra/i1/xxxxx.png">https://img.alicdn.com/imgextra/i1/xxxxx.png</a></p> */ @NameInMap("Icon") public String icon; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Type") public String type; public static GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO self = new GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO extends TeaModel { /** * <strong>example:</strong> * <p><a href="https://img.alicdn.com/imgextra/i1/xxxxx.png">https://img.alicdn.com/imgextra/i1/xxxxx.png</a></p> */ @NameInMap("Icon") public String icon; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Type") public String type; public static GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO self = new GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class GetSpaceDirectoriesResponseBodyChildrenSpaceOwner extends TeaModel { /** * <strong>example:</strong> * <p>小钉</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetSpaceDirectoriesResponseBodyChildrenSpaceOwner build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenSpaceOwner self = new GetSpaceDirectoriesResponseBodyChildrenSpaceOwner(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenSpaceOwner setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSpaceDirectoriesResponseBodyChildrenSpaceOwner setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo extends TeaModel { /** * <strong>example:</strong> * <p>GET_DENTRY</p> */ @NameInMap("DentryActions") public java.util.List<String> dentryActions; /** * <strong>example:</strong> * <p>3</p> */ @NameInMap("RoleCode") public String roleCode; /** * <strong>example:</strong> * <p>GET_SPACE</p> */ @NameInMap("SpaceActions") public java.util.List<String> spaceActions; public static GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo self = new GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo setDentryActions(java.util.List<String> dentryActions) { this.dentryActions = dentryActions; return this; } public java.util.List<String> getDentryActions() { return this.dentryActions; } public GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo setSpaceActions(java.util.List<String> spaceActions) { this.spaceActions = spaceActions; return this; } public java.util.List<String> getSpaceActions() { return this.spaceActions; } } public static class GetSpaceDirectoriesResponseBodyChildrenSpace extends TeaModel { /** * <strong>example:</strong> * <p><a href="https://img.alicdn.com/imgextra/i1/O1xxxxx.png">https://img.alicdn.com/imgextra/i1/O1xxxxx.png</a></p> */ @NameInMap("Cover") public String cover; /** * <strong>example:</strong> * <p>这是简介</p> */ @NameInMap("Description") public String description; @NameInMap("HdIconVO") public GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO hdIconVO; @NameInMap("IconVO") public GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO iconVO; /** * <strong>example:</strong> * <p>n9XJxxxxx</p> */ @NameInMap("Id") public String id; @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>测试知识库</p> */ @NameInMap("Owner") public GetSpaceDirectoriesResponseBodyChildrenSpaceOwner owner; @NameInMap("RecentList") public java.util.List<?> recentList; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Type") public Integer type; /** * <strong>example:</strong> * <p><a href="https://alidocs.dingtalk.com/i/spaces/n9XJ*******Xy/overview">https://alidocs.dingtalk.com/i/spaces/n9XJ*******Xy/overview</a></p> */ @NameInMap("Url") public String url; @NameInMap("VisitorInfo") public GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo visitorInfo; public static GetSpaceDirectoriesResponseBodyChildrenSpace build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenSpace self = new GetSpaceDirectoriesResponseBodyChildrenSpace(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenSpace setCover(String cover) { this.cover = cover; return this; } public String getCover() { return this.cover; } public GetSpaceDirectoriesResponseBodyChildrenSpace setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public GetSpaceDirectoriesResponseBodyChildrenSpace setHdIconVO(GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO hdIconVO) { this.hdIconVO = hdIconVO; return this; } public GetSpaceDirectoriesResponseBodyChildrenSpaceHdIconVO getHdIconVO() { return this.hdIconVO; } public GetSpaceDirectoriesResponseBodyChildrenSpace setIconVO(GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO iconVO) { this.iconVO = iconVO; return this; } public GetSpaceDirectoriesResponseBodyChildrenSpaceIconVO getIconVO() { return this.iconVO; } public GetSpaceDirectoriesResponseBodyChildrenSpace setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public GetSpaceDirectoriesResponseBodyChildrenSpace setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSpaceDirectoriesResponseBodyChildrenSpace setOwner(GetSpaceDirectoriesResponseBodyChildrenSpaceOwner owner) { this.owner = owner; return this; } public GetSpaceDirectoriesResponseBodyChildrenSpaceOwner getOwner() { return this.owner; } public GetSpaceDirectoriesResponseBodyChildrenSpace setRecentList(java.util.List<?> recentList) { this.recentList = recentList; return this; } public java.util.List<?> getRecentList() { return this.recentList; } public GetSpaceDirectoriesResponseBodyChildrenSpace setType(Integer type) { this.type = type; return this; } public Integer getType() { return this.type; } public GetSpaceDirectoriesResponseBodyChildrenSpace setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public GetSpaceDirectoriesResponseBodyChildrenSpace setVisitorInfo(GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo visitorInfo) { this.visitorInfo = visitorInfo; return this; } public GetSpaceDirectoriesResponseBodyChildrenSpaceVisitorInfo getVisitorInfo() { return this.visitorInfo; } } public static class GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo extends TeaModel { /** * <p>WordCount</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("WordCount") public Long wordCount; public static GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo self = new GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo setWordCount(Long wordCount) { this.wordCount = wordCount; return this; } public Long getWordCount() { return this.wordCount; } } public static class GetSpaceDirectoriesResponseBodyChildrenUpdater extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static GetSpaceDirectoriesResponseBodyChildrenUpdater build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenUpdater self = new GetSpaceDirectoriesResponseBodyChildrenUpdater(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenUpdater setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSpaceDirectoriesResponseBodyChildrenUpdater setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class GetSpaceDirectoriesResponseBodyChildrenVisitorInfo extends TeaModel { @NameInMap("DentryActions") public java.util.List<String> dentryActions; /** * <strong>example:</strong> * <p>OWNER</p> */ @NameInMap("RoleCode") public String roleCode; @NameInMap("SpaceActions") public java.util.List<String> spaceActions; public static GetSpaceDirectoriesResponseBodyChildrenVisitorInfo build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildrenVisitorInfo self = new GetSpaceDirectoriesResponseBodyChildrenVisitorInfo(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildrenVisitorInfo setDentryActions(java.util.List<String> dentryActions) { this.dentryActions = dentryActions; return this; } public java.util.List<String> getDentryActions() { return this.dentryActions; } public GetSpaceDirectoriesResponseBodyChildrenVisitorInfo setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public GetSpaceDirectoriesResponseBodyChildrenVisitorInfo setSpaceActions(java.util.List<String> spaceActions) { this.spaceActions = spaceActions; return this; } public java.util.List<String> getSpaceActions() { return this.spaceActions; } } public static class GetSpaceDirectoriesResponseBodyChildren extends TeaModel { /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("ContentType") public String contentType; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("CreatedTime") public Long createdTime; @NameInMap("Creator") public GetSpaceDirectoriesResponseBodyChildrenCreator creator; /** * <strong>example:</strong> * <p>abc</p> */ @NameInMap("DentryId") public String dentryId; /** * <strong>example:</strong> * <p>file</p> */ @NameInMap("DentryType") public String dentryType; /** * <strong>example:</strong> * <p>cdefg</p> */ @NameInMap("DentryUuid") public String dentryUuid; /** * <strong>example:</strong> * <p>aabbcc</p> */ @NameInMap("DocKey") public String docKey; /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("Extension") public String extension; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("HasChildren") public Boolean hasChildren; @NameInMap("LinkSourceInfo") public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo linkSourceInfo; /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>测试组织/测试知识库/abc</p> */ @NameInMap("Path") public String path; @NameInMap("Space") public GetSpaceDirectoriesResponseBodyChildrenSpace space; /** * <strong>example:</strong> * <p>bcd</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("StatisticalInfo") public GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo statisticalInfo; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("UpdatedTime") public Long updatedTime; @NameInMap("Updater") public GetSpaceDirectoriesResponseBodyChildrenUpdater updater; /** * <strong>example:</strong> * <p><a href="https://xxx.yy">https://xxx.yy</a></p> */ @NameInMap("Url") public String url; @NameInMap("VisitorInfo") public GetSpaceDirectoriesResponseBodyChildrenVisitorInfo visitorInfo; public static GetSpaceDirectoriesResponseBodyChildren build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesResponseBodyChildren self = new GetSpaceDirectoriesResponseBodyChildren(); return TeaModel.build(map, self); } public GetSpaceDirectoriesResponseBodyChildren setContentType(String contentType) { this.contentType = contentType; return this; } public String getContentType() { return this.contentType; } public GetSpaceDirectoriesResponseBodyChildren setCreatedTime(Long createdTime) { this.createdTime = createdTime; return this; } public Long getCreatedTime() { return this.createdTime; } public GetSpaceDirectoriesResponseBodyChildren setCreator(GetSpaceDirectoriesResponseBodyChildrenCreator creator) { this.creator = creator; return this; } public GetSpaceDirectoriesResponseBodyChildrenCreator getCreator() { return this.creator; } public GetSpaceDirectoriesResponseBodyChildren setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public GetSpaceDirectoriesResponseBodyChildren setDentryType(String dentryType) { this.dentryType = dentryType; return this; } public String getDentryType() { return this.dentryType; } public GetSpaceDirectoriesResponseBodyChildren setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public GetSpaceDirectoriesResponseBodyChildren setDocKey(String docKey) { this.docKey = docKey; return this; } public String getDocKey() { return this.docKey; } public GetSpaceDirectoriesResponseBodyChildren setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public GetSpaceDirectoriesResponseBodyChildren setHasChildren(Boolean hasChildren) { this.hasChildren = hasChildren; return this; } public Boolean getHasChildren() { return this.hasChildren; } public GetSpaceDirectoriesResponseBodyChildren setLinkSourceInfo(GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo linkSourceInfo) { this.linkSourceInfo = linkSourceInfo; return this; } public GetSpaceDirectoriesResponseBodyChildrenLinkSourceInfo getLinkSourceInfo() { return this.linkSourceInfo; } public GetSpaceDirectoriesResponseBodyChildren setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSpaceDirectoriesResponseBodyChildren setPath(String path) { this.path = path; return this; } public String getPath() { return this.path; } public GetSpaceDirectoriesResponseBodyChildren setSpace(GetSpaceDirectoriesResponseBodyChildrenSpace space) { this.space = space; return this; } public GetSpaceDirectoriesResponseBodyChildrenSpace getSpace() { return this.space; } public GetSpaceDirectoriesResponseBodyChildren setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public GetSpaceDirectoriesResponseBodyChildren setStatisticalInfo(GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo statisticalInfo) { this.statisticalInfo = statisticalInfo; return this; } public GetSpaceDirectoriesResponseBodyChildrenStatisticalInfo getStatisticalInfo() { return this.statisticalInfo; } public GetSpaceDirectoriesResponseBodyChildren setUpdatedTime(Long updatedTime) { this.updatedTime = updatedTime; return this; } public Long getUpdatedTime() { return this.updatedTime; } public GetSpaceDirectoriesResponseBodyChildren setUpdater(GetSpaceDirectoriesResponseBodyChildrenUpdater updater) { this.updater = updater; return this; } public GetSpaceDirectoriesResponseBodyChildrenUpdater getUpdater() { return this.updater; } public GetSpaceDirectoriesResponseBodyChildren setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public GetSpaceDirectoriesResponseBodyChildren setVisitorInfo(GetSpaceDirectoriesResponseBodyChildrenVisitorInfo visitorInfo) { this.visitorInfo = visitorInfo; return this; } public GetSpaceDirectoriesResponseBodyChildrenVisitorInfo getVisitorInfo() { return this.visitorInfo; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetSpaceDirectoriesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesShrinkHeaders self = new GetSpaceDirectoriesShrinkHeaders(); return TeaModel.build(map, self); } public GetSpaceDirectoriesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSpaceDirectoriesShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSpaceDirectoriesShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSpaceDirectoriesShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>asdasd</p> */ @NameInMap("DentryId") public String dentryId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>30</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123123</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>qweqwe</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public String tenantContextShrink; public static GetSpaceDirectoriesShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetSpaceDirectoriesShrinkRequest self = new GetSpaceDirectoriesShrinkRequest(); return TeaModel.build(map, self); } public GetSpaceDirectoriesShrinkRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public GetSpaceDirectoriesShrinkRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public GetSpaceDirectoriesShrinkRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public GetSpaceDirectoriesShrinkRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public GetSpaceDirectoriesShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSubscribedCalendarHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSubscribedCalendarHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetSubscribedCalendarHeadersAccountContext accountContext; public static GetSubscribedCalendarHeaders build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarHeaders self = new GetSubscribedCalendarHeaders(); return TeaModel.build(map, self); } public GetSubscribedCalendarHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSubscribedCalendarHeaders setAccountContext(GetSubscribedCalendarHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetSubscribedCalendarHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetSubscribedCalendarHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetSubscribedCalendarHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarHeadersAccountContext self = new GetSubscribedCalendarHeadersAccountContext(); return TeaModel.build(map, self); } public GetSubscribedCalendarHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSubscribedCalendarRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSubscribedCalendarRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>M5MjkxNDUxQHVzZXJzLmRpbmd0YWxrLmNv</p> */ @NameInMap("CalendarId") public String calendarId; public static GetSubscribedCalendarRequest build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarRequest self = new GetSubscribedCalendarRequest(); return TeaModel.build(map, self); } public GetSubscribedCalendarRequest setCalendarId(String calendarId) { this.calendarId = calendarId; return this; } public String getCalendarId() { return this.calendarId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSubscribedCalendarResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSubscribedCalendarResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetSubscribedCalendarResponseBody body; public static GetSubscribedCalendarResponse build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarResponse self = new GetSubscribedCalendarResponse(); return TeaModel.build(map, self); } public GetSubscribedCalendarResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetSubscribedCalendarResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetSubscribedCalendarResponse setBody(GetSubscribedCalendarResponseBody body) { this.body = body; return this; } public GetSubscribedCalendarResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSubscribedCalendarResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSubscribedCalendarResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("author") public String author; /** * <strong>example:</strong> * <p>M5MjkxNDUxQHVzZXJzLmRpbmd0YWxrLmNv</p> */ @NameInMap("calendarId") public String calendarId; /** * <strong>example:</strong> * <p>中国传统日历</p> */ @NameInMap("description") public String description; @NameInMap("managers") public java.util.List<String> managers; /** * <strong>example:</strong> * <p>中国传统日历</p> */ @NameInMap("name") public String name; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("subscribeScope") public GetSubscribedCalendarResponseBodySubscribeScope subscribeScope; public static GetSubscribedCalendarResponseBody build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarResponseBody self = new GetSubscribedCalendarResponseBody(); return TeaModel.build(map, self); } public GetSubscribedCalendarResponseBody setAuthor(String author) { this.author = author; return this; } public String getAuthor() { return this.author; } public GetSubscribedCalendarResponseBody setCalendarId(String calendarId) { this.calendarId = calendarId; return this; } public String getCalendarId() { return this.calendarId; } public GetSubscribedCalendarResponseBody setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public GetSubscribedCalendarResponseBody setManagers(java.util.List<String> managers) { this.managers = managers; return this; } public java.util.List<String> getManagers() { return this.managers; } public GetSubscribedCalendarResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetSubscribedCalendarResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetSubscribedCalendarResponseBody setSubscribeScope(GetSubscribedCalendarResponseBodySubscribeScope subscribeScope) { this.subscribeScope = subscribeScope; return this; } public GetSubscribedCalendarResponseBodySubscribeScope getSubscribeScope() { return this.subscribeScope; } public static class GetSubscribedCalendarResponseBodySubscribeScope extends TeaModel { @NameInMap("CorpIds") public java.util.List<String> corpIds; @NameInMap("OpenConversationIds") public java.util.List<String> openConversationIds; @NameInMap("UserIds") public java.util.List<String> userIds; public static GetSubscribedCalendarResponseBodySubscribeScope build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarResponseBodySubscribeScope self = new GetSubscribedCalendarResponseBodySubscribeScope(); return TeaModel.build(map, self); } public GetSubscribedCalendarResponseBodySubscribeScope setCorpIds(java.util.List<String> corpIds) { this.corpIds = corpIds; return this; } public java.util.List<String> getCorpIds() { return this.corpIds; } public GetSubscribedCalendarResponseBodySubscribeScope setOpenConversationIds(java.util.List<String> openConversationIds) { this.openConversationIds = openConversationIds; return this; } public java.util.List<String> getOpenConversationIds() { return this.openConversationIds; } public GetSubscribedCalendarResponseBodySubscribeScope setUserIds(java.util.List<String> userIds) { this.userIds = userIds; return this; } public java.util.List<String> getUserIds() { return this.userIds; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetSubscribedCalendarShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetSubscribedCalendarShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetSubscribedCalendarShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetSubscribedCalendarShrinkHeaders self = new GetSubscribedCalendarShrinkHeaders(); return TeaModel.build(map, self); } public GetSubscribedCalendarShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetSubscribedCalendarShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTaskCopiesHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTaskCopiesHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetTaskCopiesHeadersAccountContext accountContext; public static GetTaskCopiesHeaders build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesHeaders self = new GetTaskCopiesHeaders(); return TeaModel.build(map, self); } public GetTaskCopiesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetTaskCopiesHeaders setAccountContext(GetTaskCopiesHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetTaskCopiesHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetTaskCopiesHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetTaskCopiesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesHeadersAccountContext self = new GetTaskCopiesHeadersAccountContext(); return TeaModel.build(map, self); } public GetTaskCopiesHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTaskCopiesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTaskCopiesRequest extends TeaModel { /** * <strong>example:</strong> * <p>APP_PBKxxx</p> */ @NameInMap("AppType") public String appType; /** * <strong>example:</strong> * <p>2021-05-01</p> */ @NameInMap("CreateFromTimeGMT") public Long createFromTimeGMT; /** * <strong>example:</strong> * <p>2021-05-01</p> */ @NameInMap("CreateToTimeGMT") public Long createToTimeGMT; /** * <strong>example:</strong> * <p>keyword</p> */ @NameInMap("Keyword") public String keyword; /** * <strong>example:</strong> * <p>zh-CN</p> */ @NameInMap("Language") public String language; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>[&quot;xx&quot;,&quot;xxx&quot;]</p> */ @NameInMap("ProcessCodes") public String processCodes; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>hexxxx</p> */ @NameInMap("SystemToken") public String systemToken; public static GetTaskCopiesRequest build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesRequest self = new GetTaskCopiesRequest(); return TeaModel.build(map, self); } public GetTaskCopiesRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetTaskCopiesRequest setCreateFromTimeGMT(Long createFromTimeGMT) { this.createFromTimeGMT = createFromTimeGMT; return this; } public Long getCreateFromTimeGMT() { return this.createFromTimeGMT; } public GetTaskCopiesRequest setCreateToTimeGMT(Long createToTimeGMT) { this.createToTimeGMT = createToTimeGMT; return this; } public Long getCreateToTimeGMT() { return this.createToTimeGMT; } public GetTaskCopiesRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public GetTaskCopiesRequest setLanguage(String language) { this.language = language; return this; } public String getLanguage() { return this.language; } public GetTaskCopiesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public GetTaskCopiesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public GetTaskCopiesRequest setProcessCodes(String processCodes) { this.processCodes = processCodes; return this; } public String getProcessCodes() { return this.processCodes; } public GetTaskCopiesRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTaskCopiesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTaskCopiesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetTaskCopiesResponseBody body; public static GetTaskCopiesResponse build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesResponse self = new GetTaskCopiesResponse(); return TeaModel.build(map, self); } public GetTaskCopiesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetTaskCopiesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetTaskCopiesResponse setBody(GetTaskCopiesResponseBody body) { this.body = body; return this; } public GetTaskCopiesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTaskCopiesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTaskCopiesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>[{}]</p> */ @NameInMap("data") public java.util.List<GetTaskCopiesResponseBodyData> data; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("pageNumber") public Long pageNumber; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("totalCount") public Long totalCount; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetTaskCopiesResponseBody build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesResponseBody self = new GetTaskCopiesResponseBody(); return TeaModel.build(map, self); } public GetTaskCopiesResponseBody setData(java.util.List<GetTaskCopiesResponseBodyData> data) { this.data = data; return this; } public java.util.List<GetTaskCopiesResponseBodyData> getData() { return this.data; } public GetTaskCopiesResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public GetTaskCopiesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetTaskCopiesResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public GetTaskCopiesResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetTaskCopiesResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetTaskCopiesResponseBodyDataCurrentActivityInstances extends TeaModel { /** * <strong>example:</strong> * <p>act-xxaanfaf</p> */ @NameInMap("ActivityId") public String activityId; /** * <strong>example:</strong> * <p>running</p> */ @NameInMap("ActivityInstanceStatus") public String activityInstanceStatus; /** * <strong>example:</strong> * <p>act-12345</p> */ @NameInMap("ActivityName") public String activityName; /** * <strong>example:</strong> * <p>redirect task</p> */ @NameInMap("ActivityNameInEnglish") public String activityNameInEnglish; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("Id") public Long id; public static GetTaskCopiesResponseBodyDataCurrentActivityInstances build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesResponseBodyDataCurrentActivityInstances self = new GetTaskCopiesResponseBodyDataCurrentActivityInstances(); return TeaModel.build(map, self); } public GetTaskCopiesResponseBodyDataCurrentActivityInstances setActivityId(String activityId) { this.activityId = activityId; return this; } public String getActivityId() { return this.activityId; } public GetTaskCopiesResponseBodyDataCurrentActivityInstances setActivityInstanceStatus(String activityInstanceStatus) { this.activityInstanceStatus = activityInstanceStatus; return this; } public String getActivityInstanceStatus() { return this.activityInstanceStatus; } public GetTaskCopiesResponseBodyDataCurrentActivityInstances setActivityName(String activityName) { this.activityName = activityName; return this; } public String getActivityName() { return this.activityName; } public GetTaskCopiesResponseBodyDataCurrentActivityInstances setActivityNameInEnglish(String activityNameInEnglish) { this.activityNameInEnglish = activityNameInEnglish; return this; } public String getActivityNameInEnglish() { return this.activityNameInEnglish; } public GetTaskCopiesResponseBodyDataCurrentActivityInstances setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } } public static class GetTaskCopiesResponseBodyData extends TeaModel { /** * <strong>example:</strong> * <p>[ &quot;actxxx&quot; ]</p> */ @NameInMap("ActionExecutorId") public java.util.List<String> actionExecutorId; /** * <strong>example:</strong> * <p>[ &quot;name&quot; ]</p> */ @NameInMap("ActionExecutorName") public java.util.List<String> actionExecutorName; /** * <strong>example:</strong> * <p>APP_XCxxx</p> */ @NameInMap("AppType") public String appType; /** * <strong>example:</strong> * <p>g02fbs08xxx</p> */ @NameInMap("CarbonActivityId") public String carbonActivityId; /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("CreateTimeGMT") public String createTimeGMT; /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("CurrentActivityInstances") public java.util.List<GetTaskCopiesResponseBodyDataCurrentActivityInstances> currentActivityInstances; /** * <strong>example:</strong> * <p>{}</p> */ @NameInMap("DataMap") public java.util.Map<String, ?> dataMap; /** * <strong>example:</strong> * <p>edit</p> */ @NameInMap("DataType") public String dataType; /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("FinishTimeGMT") public String finishTimeGMT; /** * <strong>example:</strong> * <p>formxxxx</p> */ @NameInMap("FormInstanceId") public String formInstanceId; /** * <strong>example:</strong> * <p>uuid</p> */ @NameInMap("FormUuid") public String formUuid; /** * <strong>example:</strong> * <p>value</p> */ @NameInMap("InstanceValue") public String instanceValue; /** * <strong>example:</strong> * <p>2020-01-01</p> */ @NameInMap("ModifiedTimeGMT") public String modifiedTimeGMT; /** * <strong>example:</strong> * <p>guyagsd</p> */ @NameInMap("OriginatorAvatar") public String originatorAvatar; /** * <strong>example:</strong> * <p>guyagsd</p> */ @NameInMap("OriginatorDisplayName") public String originatorDisplayName; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("OriginatorId") public String originatorId; /** * <strong>example:</strong> * <p>同意</p> */ @NameInMap("ProcessApprovedResult") public String processApprovedResult; /** * <strong>example:</strong> * <p>同意</p> */ @NameInMap("ProcessApprovedResultText") public String processApprovedResultText; /** * <strong>example:</strong> * <p>code</p> */ @NameInMap("ProcessCode") public String processCode; /** * <strong>example:</strong> * <p>processxxxx</p> */ @NameInMap("ProcessId") public Long processId; /** * <strong>example:</strong> * <p>instancexxxx</p> */ @NameInMap("ProcessInstanceId") public String processInstanceId; /** * <strong>example:</strong> * <p>同意</p> */ @NameInMap("ProcessInstanceStatus") public String processInstanceStatus; /** * <strong>example:</strong> * <p>同意</p> */ @NameInMap("ProcessInstanceStatusText") public String processInstanceStatusText; /** * <strong>example:</strong> * <p>名称</p> */ @NameInMap("ProcessName") public String processName; /** * <strong>example:</strong> * <p>12345</p> */ @NameInMap("SerialNumber") public String serialNumber; /** * <strong>example:</strong> * <p>标题</p> */ @NameInMap("Title") public String title; /** * <strong>example:</strong> * <p>1.0</p> */ @NameInMap("Version") public Long version; public static GetTaskCopiesResponseBodyData build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesResponseBodyData self = new GetTaskCopiesResponseBodyData(); return TeaModel.build(map, self); } public GetTaskCopiesResponseBodyData setActionExecutorId(java.util.List<String> actionExecutorId) { this.actionExecutorId = actionExecutorId; return this; } public java.util.List<String> getActionExecutorId() { return this.actionExecutorId; } public GetTaskCopiesResponseBodyData setActionExecutorName(java.util.List<String> actionExecutorName) { this.actionExecutorName = actionExecutorName; return this; } public java.util.List<String> getActionExecutorName() { return this.actionExecutorName; } public GetTaskCopiesResponseBodyData setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetTaskCopiesResponseBodyData setCarbonActivityId(String carbonActivityId) { this.carbonActivityId = carbonActivityId; return this; } public String getCarbonActivityId() { return this.carbonActivityId; } public GetTaskCopiesResponseBodyData setCreateTimeGMT(String createTimeGMT) { this.createTimeGMT = createTimeGMT; return this; } public String getCreateTimeGMT() { return this.createTimeGMT; } public GetTaskCopiesResponseBodyData setCurrentActivityInstances(java.util.List<GetTaskCopiesResponseBodyDataCurrentActivityInstances> currentActivityInstances) { this.currentActivityInstances = currentActivityInstances; return this; } public java.util.List<GetTaskCopiesResponseBodyDataCurrentActivityInstances> getCurrentActivityInstances() { return this.currentActivityInstances; } public GetTaskCopiesResponseBodyData setDataMap(java.util.Map<String, ?> dataMap) { this.dataMap = dataMap; return this; } public java.util.Map<String, ?> getDataMap() { return this.dataMap; } public GetTaskCopiesResponseBodyData setDataType(String dataType) { this.dataType = dataType; return this; } public String getDataType() { return this.dataType; } public GetTaskCopiesResponseBodyData setFinishTimeGMT(String finishTimeGMT) { this.finishTimeGMT = finishTimeGMT; return this; } public String getFinishTimeGMT() { return this.finishTimeGMT; } public GetTaskCopiesResponseBodyData setFormInstanceId(String formInstanceId) { this.formInstanceId = formInstanceId; return this; } public String getFormInstanceId() { return this.formInstanceId; } public GetTaskCopiesResponseBodyData setFormUuid(String formUuid) { this.formUuid = formUuid; return this; } public String getFormUuid() { return this.formUuid; } public GetTaskCopiesResponseBodyData setInstanceValue(String instanceValue) { this.instanceValue = instanceValue; return this; } public String getInstanceValue() { return this.instanceValue; } public GetTaskCopiesResponseBodyData setModifiedTimeGMT(String modifiedTimeGMT) { this.modifiedTimeGMT = modifiedTimeGMT; return this; } public String getModifiedTimeGMT() { return this.modifiedTimeGMT; } public GetTaskCopiesResponseBodyData setOriginatorAvatar(String originatorAvatar) { this.originatorAvatar = originatorAvatar; return this; } public String getOriginatorAvatar() { return this.originatorAvatar; } public GetTaskCopiesResponseBodyData setOriginatorDisplayName(String originatorDisplayName) { this.originatorDisplayName = originatorDisplayName; return this; } public String getOriginatorDisplayName() { return this.originatorDisplayName; } public GetTaskCopiesResponseBodyData setOriginatorId(String originatorId) { this.originatorId = originatorId; return this; } public String getOriginatorId() { return this.originatorId; } public GetTaskCopiesResponseBodyData setProcessApprovedResult(String processApprovedResult) { this.processApprovedResult = processApprovedResult; return this; } public String getProcessApprovedResult() { return this.processApprovedResult; } public GetTaskCopiesResponseBodyData setProcessApprovedResultText(String processApprovedResultText) { this.processApprovedResultText = processApprovedResultText; return this; } public String getProcessApprovedResultText() { return this.processApprovedResultText; } public GetTaskCopiesResponseBodyData setProcessCode(String processCode) { this.processCode = processCode; return this; } public String getProcessCode() { return this.processCode; } public GetTaskCopiesResponseBodyData setProcessId(Long processId) { this.processId = processId; return this; } public Long getProcessId() { return this.processId; } public GetTaskCopiesResponseBodyData setProcessInstanceId(String processInstanceId) { this.processInstanceId = processInstanceId; return this; } public String getProcessInstanceId() { return this.processInstanceId; } public GetTaskCopiesResponseBodyData setProcessInstanceStatus(String processInstanceStatus) { this.processInstanceStatus = processInstanceStatus; return this; } public String getProcessInstanceStatus() { return this.processInstanceStatus; } public GetTaskCopiesResponseBodyData setProcessInstanceStatusText(String processInstanceStatusText) { this.processInstanceStatusText = processInstanceStatusText; return this; } public String getProcessInstanceStatusText() { return this.processInstanceStatusText; } public GetTaskCopiesResponseBodyData setProcessName(String processName) { this.processName = processName; return this; } public String getProcessName() { return this.processName; } public GetTaskCopiesResponseBodyData setSerialNumber(String serialNumber) { this.serialNumber = serialNumber; return this; } public String getSerialNumber() { return this.serialNumber; } public GetTaskCopiesResponseBodyData setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public GetTaskCopiesResponseBodyData setVersion(Long version) { this.version = version; return this; } public Long getVersion() { return this.version; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTaskCopiesShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTaskCopiesShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetTaskCopiesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetTaskCopiesShrinkHeaders self = new GetTaskCopiesShrinkHeaders(); return TeaModel.build(map, self); } public GetTaskCopiesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetTaskCopiesShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetTemplateListByUserIdHeadersAccountContext accountContext; public static GetTemplateListByUserIdHeaders build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdHeaders self = new GetTemplateListByUserIdHeaders(); return TeaModel.build(map, self); } public GetTemplateListByUserIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetTemplateListByUserIdHeaders setAccountContext(GetTemplateListByUserIdHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetTemplateListByUserIdHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetTemplateListByUserIdHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetTemplateListByUserIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdHeadersAccountContext self = new GetTemplateListByUserIdHeadersAccountContext(); return TeaModel.build(map, self); } public GetTemplateListByUserIdHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("Offset") public Long offset; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("Size") public Long size; @NameInMap("TenantContext") public GetTemplateListByUserIdRequestTenantContext tenantContext; public static GetTemplateListByUserIdRequest build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdRequest self = new GetTemplateListByUserIdRequest(); return TeaModel.build(map, self); } public GetTemplateListByUserIdRequest setOffset(Long offset) { this.offset = offset; return this; } public Long getOffset() { return this.offset; } public GetTemplateListByUserIdRequest setSize(Long size) { this.size = size; return this; } public Long getSize() { return this.size; } public GetTemplateListByUserIdRequest setTenantContext(GetTemplateListByUserIdRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetTemplateListByUserIdRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetTemplateListByUserIdRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static GetTemplateListByUserIdRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdRequestTenantContext self = new GetTemplateListByUserIdRequestTenantContext(); return TeaModel.build(map, self); } public GetTemplateListByUserIdRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetTemplateListByUserIdResponseBody body; public static GetTemplateListByUserIdResponse build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdResponse self = new GetTemplateListByUserIdResponse(); return TeaModel.build(map, self); } public GetTemplateListByUserIdResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetTemplateListByUserIdResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetTemplateListByUserIdResponse setBody(GetTemplateListByUserIdResponseBody body) { this.body = body; return this; } public GetTemplateListByUserIdResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>12312131231</p> */ @NameInMap("nextCursor") public Long nextCursor; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("templateList") public java.util.List<GetTemplateListByUserIdResponseBodyTemplateList> templateList; public static GetTemplateListByUserIdResponseBody build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdResponseBody self = new GetTemplateListByUserIdResponseBody(); return TeaModel.build(map, self); } public GetTemplateListByUserIdResponseBody setNextCursor(Long nextCursor) { this.nextCursor = nextCursor; return this; } public Long getNextCursor() { return this.nextCursor; } public GetTemplateListByUserIdResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetTemplateListByUserIdResponseBody setTemplateList(java.util.List<GetTemplateListByUserIdResponseBodyTemplateList> templateList) { this.templateList = templateList; return this; } public java.util.List<GetTemplateListByUserIdResponseBodyTemplateList> getTemplateList() { return this.templateList; } public static class GetTemplateListByUserIdResponseBodyTemplateList extends TeaModel { @NameInMap("IconUrl") public String iconUrl; @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>11111</p> */ @NameInMap("ReportCode") public String reportCode; /** * <strong>example:</strong> * <p><a href="https://scsss/sss">https://scsss/sss</a></p> */ @NameInMap("Url") public String url; public static GetTemplateListByUserIdResponseBodyTemplateList build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdResponseBodyTemplateList self = new GetTemplateListByUserIdResponseBodyTemplateList(); return TeaModel.build(map, self); } public GetTemplateListByUserIdResponseBodyTemplateList setIconUrl(String iconUrl) { this.iconUrl = iconUrl; return this; } public String getIconUrl() { return this.iconUrl; } public GetTemplateListByUserIdResponseBodyTemplateList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public GetTemplateListByUserIdResponseBodyTemplateList setReportCode(String reportCode) { this.reportCode = reportCode; return this; } public String getReportCode() { return this.reportCode; } public GetTemplateListByUserIdResponseBodyTemplateList setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static GetTemplateListByUserIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdShrinkHeaders self = new GetTemplateListByUserIdShrinkHeaders(); return TeaModel.build(map, self); } public GetTemplateListByUserIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetTemplateListByUserIdShrinkHeaders setAccountContextShrink(String accountContextShrink) { this.accountContextShrink = accountContextShrink; return this; } public String getAccountContextShrink() { return this.accountContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTemplateListByUserIdShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTemplateListByUserIdShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("Offset") public Long offset; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("Size") public Long size; @NameInMap("TenantContext") public String tenantContextShrink; public static GetTemplateListByUserIdShrinkRequest build(java.util.Map<String, ?> map) throws Exception { GetTemplateListByUserIdShrinkRequest self = new GetTemplateListByUserIdShrinkRequest(); return TeaModel.build(map, self); } public GetTemplateListByUserIdShrinkRequest setOffset(Long offset) { this.offset = offset; return this; } public Long getOffset() { return this.offset; } public GetTemplateListByUserIdShrinkRequest setSize(Long size) { this.size = size; return this; } public Long getSize() { return this.size; } public GetTemplateListByUserIdShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTicketHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTicketHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public GetTicketHeadersAccountContext accountContext; public static GetTicketHeaders build(java.util.Map<String, ?> map) throws Exception { GetTicketHeaders self = new GetTicketHeaders(); return TeaModel.build(map, self); } public GetTicketHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public GetTicketHeaders setAccountContext(GetTicketHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public GetTicketHeadersAccountContext getAccountContext() { return this.accountContext; } public static class GetTicketHeadersAccountContext extends TeaModel { /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static GetTicketHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { GetTicketHeadersAccountContext self = new GetTicketHeadersAccountContext(); return TeaModel.build(map, self); } public GetTicketHeadersAccountContext setAccountId(String accountId) { this.accountId = accountId; return this; } public String getAccountId() { return this.accountId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTicketRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTicketRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eKWh3xxxxiE</p> */ @NameInMap("OpenTeamId") public String openTeamId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Dq9hP8Sk2v6vQxxxxiE</p> */ @NameInMap("OpenTicketId") public String openTicketId; @NameInMap("TenantContext") public GetTicketRequestTenantContext tenantContext; public static GetTicketRequest build(java.util.Map<String, ?> map) throws Exception { GetTicketRequest self = new GetTicketRequest(); return TeaModel.build(map, self); } public GetTicketRequest setOpenTeamId(String openTeamId) { this.openTeamId = openTeamId; return this; } public String getOpenTeamId() { return this.openTeamId; } public GetTicketRequest setOpenTicketId(String openTicketId) { this.openTicketId = openTicketId; return this; } public String getOpenTicketId() { return this.openTicketId; } public GetTicketRequest setTenantContext(GetTicketRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public GetTicketRequestTenantContext getTenantContext() { return this.tenantContext; } public static class GetTicketRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static GetTicketRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { GetTicketRequestTenantContext self = new GetTicketRequestTenantContext(); return TeaModel.build(map, self); } public GetTicketRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTicketResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTicketResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetTicketResponseBody body; public static GetTicketResponse build(java.util.Map<String, ?> map) throws Exception { GetTicketResponse self = new GetTicketResponse(); return TeaModel.build(map, self); } public GetTicketResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetTicketResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetTicketResponse setBody(GetTicketResponseBody body) { this.body = body; return this; } public GetTicketResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetTicketResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class GetTicketResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>2021-07-09 14:45:01</p> */ @NameInMap("createTime") public String createTime; @NameInMap("creator") public GetTicketResponseBodyCreator creator; /** * <strong>example:</strong> * <p>[{ &quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input1&quot;,&quot;name&quot;: &quot;正文&quot;,&quot;placeholder&quot;: &quot;请输入&quot;,&quot;required&quot;: false,&quot;type&quot;: &quot;TEXT_AREA&quot;,&quot;value&quot;: &quot;123&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input2&quot;,&quot;name&quot;: &quot;单选&quot;,&quot;options&quot;: [{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项1&quot;},{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项2&quot;},{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项3&quot;}],&quot;required&quot;: false,&quot;type&quot;: &quot;RADIO&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input3&quot;,&quot;name&quot;: &quot;多选&quot;,&quot;options&quot;: [{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项1&quot;},{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项2&quot;},{&quot;color&quot;: &quot;#000000&quot;,&quot;value&quot;: &quot;选项3&quot;}],&quot;required&quot;: false,&quot;type&quot;: &quot;CHECKBOX&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input5&quot;,&quot;name&quot;: &quot;数字&quot;,&quot;required&quot;: false,&quot;type&quot;: &quot;INPUT_NUMBER&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input6&quot;,&quot;maxFileNum&quot;: 20,&quot;name&quot;: &quot;上传&quot;,&quot;required&quot;: false,&quot;type&quot;: &quot;FILE&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;identifier&quot;: &quot;input7&quot;,&quot;maxFileNum&quot;: 20,&quot;name&quot;: &quot;图片&quot;,&quot;required&quot;: false,&quot;type&quot;: &quot;IMAGE&quot;},{&quot;customerVisible&quot;: true,&quot;editable&quot;: false,&quot;format&quot;: &quot;DATE_TIME&quot;,&quot;identifier&quot;: &quot;input8&quot;,&quot;name&quot;: &quot;日期&quot;,&quot;required&quot;: false,&quot;type&quot;: &quot;DATE_TIME_PICKER&quot;}]</p> */ @NameInMap("customFields") public String customFields; /** * <strong>example:</strong> * <p>cidZBSNxxxxXUCrAA==</p> */ @NameInMap("openConversationId") public String openConversationId; /** * <strong>example:</strong> * <p>a8iSxxxxtgiE</p> */ @NameInMap("openTicketId") public String openTicketId; @NameInMap("processor") public GetTicketResponseBodyProcessor processor; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>SG</p> */ @NameInMap("scene") public String scene; /** * <strong>example:</strong> * <p>{&quot;groupId&quot;:1893227,&quot;groupIsNormal&quot;:true,&quot;groupName&quot;:&quot;API和SPI测试群&quot;,&quot;groupSetId&quot;:29003,&quot;groupSetName&quot;:&quot;默认服务群组&quot;,&quot;scene&quot;:&quot;SG&quot;}</p> */ @NameInMap("sceneContext") public String sceneContext; /** * <strong>example:</strong> * <p>FINISHED</p> */ @NameInMap("stage") public String stage; @NameInMap("takers") public java.util.List<GetTicketResponseBodyTakers> takers; @NameInMap("template") public GetTicketResponseBodyTemplate template; /** * <strong>example:</strong> * <p>贤文api测试,处理人王鸿程和李航宇</p> */ @NameInMap("title") public String title; /** * <strong>example:</strong> * <p>2021-07-09 19:26:09</p> */ @NameInMap("updateTime") public String updateTime; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static GetTicketResponseBody build(java.util.Map<String, ?> map) throws Exception { GetTicketResponseBody self = new GetTicketResponseBody(); return TeaModel.build(map, self); } public GetTicketResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public GetTicketResponseBody setCreator(GetTicketResponseBodyCreator creator) { this.creator = creator; return this; } public GetTicketResponseBodyCreator getCreator() { return this.creator; } public GetTicketResponseBody setCustomFields(String customFields) { this.customFields = customFields; return this; } public String getCustomFields() { return this.customFields; } public GetTicketResponseBody setOpenConversationId(String openConversationId) { this.openConversationId = openConversationId; return this; } public String getOpenConversationId() { return this.openConversationId; } public GetTicketResponseBody setOpenTicketId(String openTicketId) { this.openTicketId = openTicketId; return this; } public String getOpenTicketId() { return this.openTicketId; } public GetTicketResponseBody setProcessor(GetTicketResponseBodyProcessor processor) { this.processor = processor; return this; } public GetTicketResponseBodyProcessor getProcessor() { return this.processor; } public GetTicketResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetTicketResponseBody setScene(String scene) { this.scene = scene; return this; } public String getScene() { return this.scene; } public GetTicketResponseBody setSceneContext(String sceneContext) { this.sceneContext = sceneContext; return this; } public String getSceneContext() { return this.sceneContext; } public GetTicketResponseBody setStage(String stage) { this.stage = stage; return this; } public String getStage() { return this.stage; } public GetTicketResponseBody setTakers(java.util.List<GetTicketResponseBodyTakers> takers) { this.takers = takers; return this; } public java.util.List<GetTicketResponseBodyTakers> getTakers() { return this.takers; } public GetTicketResponseBody setTemplate(GetTicketResponseBodyTemplate template) { this.template = template; return this; } public GetTicketResponseBodyTemplate getTemplate() { return this.template; } public GetTicketResponseBody setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public GetTicketResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public GetTicketResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public GetTicketResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class GetTicketResponseBodyCreator extends TeaModel { /** * <strong>example:</strong> * <p>贤文</p> */ @NameInMap("NickName") public String nickName; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UnionId") public String unionId; public static GetTicketResponseBodyCreator build(java.util.Map<String, ?> map) throws Exception { GetTicketResponseBodyCreator self = new GetTicketResponseBodyCreator(); return TeaModel.build(map, self); } public GetTicketResponseBodyCreator setNickName(String nickName) { this.nickName = nickName; return this; } public String getNickName() { return this.nickName; } public GetTicketResponseBodyCreator setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } } public static class GetTicketResponseBodyProcessor extends TeaModel { /** * <strong>example:</strong> * <p>贤文</p> */ @NameInMap("NickName") public String nickName; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UnionId") public String unionId; public static GetTicketResponseBodyProcessor build(java.util.Map<String, ?> map) throws Exception { GetTicketResponseBodyProcessor self = new GetTicketResponseBodyProcessor(); return TeaModel.build(map, self); } public GetTicketResponseBodyProcessor setNickName(String nickName) { this.nickName = nickName; return this; } public String getNickName() { return this.nickName; } public GetTicketResponseBodyProcessor setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } } public static class GetTicketResponseBodyTakers extends TeaModel { /** * <strong>example:</strong> * <p>贤文</p> */ @NameInMap("NickName") public String nickName; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UnionId") public String unionId; public static GetTicketResponseBodyTakers build(java.util.Map<String, ?> map) throws Exception { GetTicketResponseBodyTakers self = new GetTicketResponseBodyTakers(); return TeaModel.build(map, self); } public GetTicketResponseBodyTakers setNickName(String nickName) { this.nickName = nickName; return this; } public String getNickName() { return this.nickName; } public GetTicketResponseBodyTakers setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } } public static class GetTicketResponseBodyTemplate extends TeaModel { /** * <p>OpenTemplateBizId</p> * * <strong>example:</strong> * <p>OpenTemplateBizId</p> */ @NameInMap("OpenTemplateBizId") public String openTemplateBizId; /** * <p>OpenTemplateBizId</p> * * <strong>example:</strong> * <p>OpenTemplateBizId</p> */ @NameInMap("OpenTemplateId") public String openTemplateId; @NameInMap("TemplateName") public String templateName; public static GetTicketResponseBodyTemplate build(java.util.Map<String, ?> map) throws Exception { GetTicketResponseBodyTemplate self = new GetTicketResponseBodyTemplate(); return TeaModel.build(map, self); } public GetTicketResponseBodyTemplate setOpenTemplateBizId(String openTemplateBizId) { this.openTemplateBizId = openTemplateBizId; return this; } public String getOpenTemplateBizId() { return this.openTemplateBizId; } public GetTicketResponseBodyTemplate setOpenTemplateId(String openTemplateId) { this.openTemplateId = openTemplateId; return this; } public String getOpenTemplateId() { return this.openTemplateId; } public GetTicketResponseBodyTemplate setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } } }