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/GetInstanceByIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceByIdResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetInstanceByIdResponseBody body;
public static GetInstanceByIdResponse build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponse self = new GetInstanceByIdResponse();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetInstanceByIdResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetInstanceByIdResponse setBody(GetInstanceByIdResponseBody body) {
this.body = body;
return this;
}
public GetInstanceByIdResponseBody 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/GetInstanceByIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceByIdResponseBody extends TeaModel {
@NameInMap("actionExecutor")
public java.util.List<GetInstanceByIdResponseBodyActionExecutor> actionExecutor;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("approvedResult")
public String approvedResult;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("createTimeGMT")
public String createTimeGMT;
@NameInMap("data")
public java.util.Map<String, ?> data;
/**
* <strong>example:</strong>
* <p>FORM-EF6Y4xxx</p>
*/
@NameInMap("formUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("instanceStatus")
public String instanceStatus;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("modifiedTimeGMT")
public String modifiedTimeGMT;
@NameInMap("originator")
public GetInstanceByIdResponseBodyOriginator originator;
/**
* <strong>example:</strong>
* <p>TPROC--X1Gxxx</p>
*/
@NameInMap("processCode")
public String processCode;
/**
* <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>李四发起的请购单</p>
*/
@NameInMap("title")
public String title;
/**
* <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;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("version")
public Long version;
public static GetInstanceByIdResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponseBody self = new GetInstanceByIdResponseBody();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponseBody setActionExecutor(java.util.List<GetInstanceByIdResponseBodyActionExecutor> actionExecutor) {
this.actionExecutor = actionExecutor;
return this;
}
public java.util.List<GetInstanceByIdResponseBodyActionExecutor> getActionExecutor() {
return this.actionExecutor;
}
public GetInstanceByIdResponseBody setApprovedResult(String approvedResult) {
this.approvedResult = approvedResult;
return this;
}
public String getApprovedResult() {
return this.approvedResult;
}
public GetInstanceByIdResponseBody setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetInstanceByIdResponseBody setData(java.util.Map<String, ?> data) {
this.data = data;
return this;
}
public java.util.Map<String, ?> getData() {
return this.data;
}
public GetInstanceByIdResponseBody setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetInstanceByIdResponseBody setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
return this;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public GetInstanceByIdResponseBody setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
public GetInstanceByIdResponseBody setOriginator(GetInstanceByIdResponseBodyOriginator originator) {
this.originator = originator;
return this;
}
public GetInstanceByIdResponseBodyOriginator getOriginator() {
return this.originator;
}
public GetInstanceByIdResponseBody setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public GetInstanceByIdResponseBody setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetInstanceByIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetInstanceByIdResponseBody setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetInstanceByIdResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetInstanceByIdResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public GetInstanceByIdResponseBody setVersion(Long version) {
this.version = version;
return this;
}
public Long getVersion() {
return this.version;
}
public static class GetInstanceByIdResponseBodyActionExecutorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstanceByIdResponseBodyActionExecutorName build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponseBodyActionExecutorName self = new GetInstanceByIdResponseBodyActionExecutorName();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponseBodyActionExecutorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstanceByIdResponseBodyActionExecutorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstanceByIdResponseBodyActionExecutorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstanceByIdResponseBodyActionExecutor extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DeptName")
public String deptName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstanceByIdResponseBodyActionExecutorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstanceByIdResponseBodyActionExecutor build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponseBodyActionExecutor self = new GetInstanceByIdResponseBodyActionExecutor();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponseBodyActionExecutor setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetInstanceByIdResponseBodyActionExecutor setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstanceByIdResponseBodyActionExecutor setName(GetInstanceByIdResponseBodyActionExecutorName name) {
this.name = name;
return this;
}
public GetInstanceByIdResponseBodyActionExecutorName getName() {
return this.name;
}
public GetInstanceByIdResponseBodyActionExecutor setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetInstanceByIdResponseBodyOriginatorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstanceByIdResponseBodyOriginatorName build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponseBodyOriginatorName self = new GetInstanceByIdResponseBodyOriginatorName();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponseBodyOriginatorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstanceByIdResponseBodyOriginatorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstanceByIdResponseBodyOriginatorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstanceByIdResponseBodyOriginator extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DeptName")
public String deptName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstanceByIdResponseBodyOriginatorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstanceByIdResponseBodyOriginator build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdResponseBodyOriginator self = new GetInstanceByIdResponseBodyOriginator();
return TeaModel.build(map, self);
}
public GetInstanceByIdResponseBodyOriginator setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetInstanceByIdResponseBodyOriginator setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstanceByIdResponseBodyOriginator setName(GetInstanceByIdResponseBodyOriginatorName name) {
this.name = name;
return this;
}
public GetInstanceByIdResponseBodyOriginatorName getName() {
return this.name;
}
public GetInstanceByIdResponseBodyOriginator 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/GetInstanceByIdShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceByIdShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetInstanceByIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdShrinkHeaders self = new GetInstanceByIdShrinkHeaders();
return TeaModel.build(map, self);
}
public GetInstanceByIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstanceByIdShrinkHeaders 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/GetInstanceIdListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceIdListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetInstanceIdListHeadersAccountContext accountContext;
public static GetInstanceIdListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListHeaders self = new GetInstanceIdListHeaders();
return TeaModel.build(map, self);
}
public GetInstanceIdListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstanceIdListHeaders setAccountContext(GetInstanceIdListHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetInstanceIdListHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetInstanceIdListHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetInstanceIdListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListHeadersAccountContext self = new GetInstanceIdListHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetInstanceIdListHeadersAccountContext 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/GetInstanceIdListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceIdListRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("ApprovedResult")
public String approvedResult;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateFromTimeGMT")
public String createFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateToTimeGMT")
public String createToTimeGMT;
/**
* <strong>example:</strong>
* <p>FORM-EF6Yxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("InstanceStatus")
public String instanceStatus;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("ModifiedFromTimeGMT")
public String modifiedFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-09-10</p>
*/
@NameInMap("ModifiedToTimeGMT")
public String modifiedToTimeGMT;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("OriginatorId")
public String originatorId;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>{\"textField\":\"123\"}</p>
*/
@NameInMap("SearchFieldJson")
public String searchFieldJson;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
/**
* <strong>example:</strong>
* <p>1045001</p>
*/
@NameInMap("TaskId")
public String taskId;
public static GetInstanceIdListRequest build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListRequest self = new GetInstanceIdListRequest();
return TeaModel.build(map, self);
}
public GetInstanceIdListRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetInstanceIdListRequest setApprovedResult(String approvedResult) {
this.approvedResult = approvedResult;
return this;
}
public String getApprovedResult() {
return this.approvedResult;
}
public GetInstanceIdListRequest setCreateFromTimeGMT(String createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public String getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetInstanceIdListRequest setCreateToTimeGMT(String createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public String getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetInstanceIdListRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetInstanceIdListRequest setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
return this;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public GetInstanceIdListRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetInstanceIdListRequest setModifiedFromTimeGMT(String modifiedFromTimeGMT) {
this.modifiedFromTimeGMT = modifiedFromTimeGMT;
return this;
}
public String getModifiedFromTimeGMT() {
return this.modifiedFromTimeGMT;
}
public GetInstanceIdListRequest setModifiedToTimeGMT(String modifiedToTimeGMT) {
this.modifiedToTimeGMT = modifiedToTimeGMT;
return this;
}
public String getModifiedToTimeGMT() {
return this.modifiedToTimeGMT;
}
public GetInstanceIdListRequest setOriginatorId(String originatorId) {
this.originatorId = originatorId;
return this;
}
public String getOriginatorId() {
return this.originatorId;
}
public GetInstanceIdListRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetInstanceIdListRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetInstanceIdListRequest setSearchFieldJson(String searchFieldJson) {
this.searchFieldJson = searchFieldJson;
return this;
}
public String getSearchFieldJson() {
return this.searchFieldJson;
}
public GetInstanceIdListRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetInstanceIdListRequest setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String 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/GetInstanceIdListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceIdListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetInstanceIdListResponseBody body;
public static GetInstanceIdListResponse build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListResponse self = new GetInstanceIdListResponse();
return TeaModel.build(map, self);
}
public GetInstanceIdListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetInstanceIdListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetInstanceIdListResponse setBody(GetInstanceIdListResponseBody body) {
this.body = body;
return this;
}
public GetInstanceIdListResponseBody 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/GetInstanceIdListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceIdListResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[ "FINST-BOOxxx" ]</p>
*/
@NameInMap("data")
public java.util.List<String> 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 GetInstanceIdListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListResponseBody self = new GetInstanceIdListResponseBody();
return TeaModel.build(map, self);
}
public GetInstanceIdListResponseBody setData(java.util.List<String> data) {
this.data = data;
return this;
}
public java.util.List<String> getData() {
return this.data;
}
public GetInstanceIdListResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetInstanceIdListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetInstanceIdListResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetInstanceIdListResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetInstanceIdListResponseBody 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/GetInstanceIdListShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceIdListShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetInstanceIdListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstanceIdListShrinkHeaders self = new GetInstanceIdListShrinkHeaders();
return TeaModel.build(map, self);
}
public GetInstanceIdListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstanceIdListShrinkHeaders 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/GetInstancesByIdListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesByIdListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetInstancesByIdListHeadersAccountContext accountContext;
public static GetInstancesByIdListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListHeaders self = new GetInstancesByIdListHeaders();
return TeaModel.build(map, self);
}
public GetInstancesByIdListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstancesByIdListHeaders setAccountContext(GetInstancesByIdListHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetInstancesByIdListHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetInstancesByIdListHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetInstancesByIdListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListHeadersAccountContext self = new GetInstancesByIdListHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetInstancesByIdListHeadersAccountContext 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/GetInstancesByIdListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesByIdListRequest 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>inst-123,inst-223</p>
*/
@NameInMap("ProcessInstanceIds")
public String processInstanceIds;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetInstancesByIdListRequest build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListRequest self = new GetInstancesByIdListRequest();
return TeaModel.build(map, self);
}
public GetInstancesByIdListRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetInstancesByIdListRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetInstancesByIdListRequest setProcessInstanceIds(String processInstanceIds) {
this.processInstanceIds = processInstanceIds;
return this;
}
public String getProcessInstanceIds() {
return this.processInstanceIds;
}
public GetInstancesByIdListRequest 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/GetInstancesByIdListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesByIdListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetInstancesByIdListResponseBody body;
public static GetInstancesByIdListResponse build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponse self = new GetInstancesByIdListResponse();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetInstancesByIdListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetInstancesByIdListResponse setBody(GetInstancesByIdListResponseBody body) {
this.body = body;
return this;
}
public GetInstancesByIdListResponseBody 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/GetInstancesByIdListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesByIdListResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public java.util.List<GetInstancesByIdListResponseBodyResult> 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 GetInstancesByIdListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBody self = new GetInstancesByIdListResponseBody();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetInstancesByIdListResponseBody setResult(java.util.List<GetInstancesByIdListResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetInstancesByIdListResponseBodyResult> getResult() {
return this.result;
}
public GetInstancesByIdListResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetInstancesByIdListResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetInstancesByIdListResponseBodyResultActionExecutorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstancesByIdListResponseBodyResultActionExecutorName build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBodyResultActionExecutorName self = new GetInstancesByIdListResponseBodyResultActionExecutorName();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBodyResultActionExecutorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstancesByIdListResponseBodyResultActionExecutorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstancesByIdListResponseBodyResultActionExecutorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstancesByIdListResponseBodyResultActionExecutor extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DepartmentName")
public String departmentName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstancesByIdListResponseBodyResultActionExecutorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstancesByIdListResponseBodyResultActionExecutor build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBodyResultActionExecutor self = new GetInstancesByIdListResponseBodyResultActionExecutor();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBodyResultActionExecutor setDepartmentName(String departmentName) {
this.departmentName = departmentName;
return this;
}
public String getDepartmentName() {
return this.departmentName;
}
public GetInstancesByIdListResponseBodyResultActionExecutor setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstancesByIdListResponseBodyResultActionExecutor setName(GetInstancesByIdListResponseBodyResultActionExecutorName name) {
this.name = name;
return this;
}
public GetInstancesByIdListResponseBodyResultActionExecutorName getName() {
return this.name;
}
public GetInstancesByIdListResponseBodyResultActionExecutor setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetInstancesByIdListResponseBodyResultOriginatorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstancesByIdListResponseBodyResultOriginatorName build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBodyResultOriginatorName self = new GetInstancesByIdListResponseBodyResultOriginatorName();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBodyResultOriginatorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstancesByIdListResponseBodyResultOriginatorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstancesByIdListResponseBodyResultOriginatorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstancesByIdListResponseBodyResultOriginator extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DepartmentName")
public String departmentName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstancesByIdListResponseBodyResultOriginatorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstancesByIdListResponseBodyResultOriginator build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBodyResultOriginator self = new GetInstancesByIdListResponseBodyResultOriginator();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBodyResultOriginator setDepartmentName(String departmentName) {
this.departmentName = departmentName;
return this;
}
public String getDepartmentName() {
return this.departmentName;
}
public GetInstancesByIdListResponseBodyResultOriginator setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstancesByIdListResponseBodyResultOriginator setName(GetInstancesByIdListResponseBodyResultOriginatorName name) {
this.name = name;
return this;
}
public GetInstancesByIdListResponseBodyResultOriginatorName getName() {
return this.name;
}
public GetInstancesByIdListResponseBodyResultOriginator setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetInstancesByIdListResponseBodyResult extends TeaModel {
@NameInMap("ActionExecutor")
public java.util.List<GetInstancesByIdListResponseBodyResultActionExecutor> actionExecutor;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("ApprovedResult")
public String approvedResult;
@NameInMap("Data")
public java.util.Map<String, ?> data;
/**
* <strong>example:</strong>
* <p>FORM-EF6Y4G8WO2FN0SUB43TDQ3CGC3FMFQ1G9400RCJ3</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("InstanceStatus")
public String instanceStatus;
@NameInMap("Originator")
public GetInstancesByIdListResponseBodyResultOriginator originator;
/**
* <strong>example:</strong>
* <p>TPROC--X1Gxxx</p>
*/
@NameInMap("ProcessCode")
public String processCode;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-4xxx</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>李四发起的请购单</p>
*/
@NameInMap("Title")
public String title;
public static GetInstancesByIdListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListResponseBodyResult self = new GetInstancesByIdListResponseBodyResult();
return TeaModel.build(map, self);
}
public GetInstancesByIdListResponseBodyResult setActionExecutor(java.util.List<GetInstancesByIdListResponseBodyResultActionExecutor> actionExecutor) {
this.actionExecutor = actionExecutor;
return this;
}
public java.util.List<GetInstancesByIdListResponseBodyResultActionExecutor> getActionExecutor() {
return this.actionExecutor;
}
public GetInstancesByIdListResponseBodyResult setApprovedResult(String approvedResult) {
this.approvedResult = approvedResult;
return this;
}
public String getApprovedResult() {
return this.approvedResult;
}
public GetInstancesByIdListResponseBodyResult setData(java.util.Map<String, ?> data) {
this.data = data;
return this;
}
public java.util.Map<String, ?> getData() {
return this.data;
}
public GetInstancesByIdListResponseBodyResult setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetInstancesByIdListResponseBodyResult setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
return this;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public GetInstancesByIdListResponseBodyResult setOriginator(GetInstancesByIdListResponseBodyResultOriginator originator) {
this.originator = originator;
return this;
}
public GetInstancesByIdListResponseBodyResultOriginator getOriginator() {
return this.originator;
}
public GetInstancesByIdListResponseBodyResult setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public GetInstancesByIdListResponseBodyResult setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetInstancesByIdListResponseBodyResult setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetInstancesByIdListShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesByIdListShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetInstancesByIdListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstancesByIdListShrinkHeaders self = new GetInstancesByIdListShrinkHeaders();
return TeaModel.build(map, self);
}
public GetInstancesByIdListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstancesByIdListShrinkHeaders 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/GetInstancesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetInstancesHeadersAccountContext accountContext;
public static GetInstancesHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstancesHeaders self = new GetInstancesHeaders();
return TeaModel.build(map, self);
}
public GetInstancesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstancesHeaders setAccountContext(GetInstancesHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetInstancesHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetInstancesHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetInstancesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetInstancesHeadersAccountContext self = new GetInstancesHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetInstancesHeadersAccountContext 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/GetInstancesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("ApprovedResult")
public String approvedResult;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateFromTimeGMT")
public String createFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateToTimeGMT")
public String createToTimeGMT;
/**
* <strong>example:</strong>
* <p>FORM-EF6Yxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("InstanceStatus")
public String instanceStatus;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("ModifiedFromTimeGMT")
public String modifiedFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-09-10</p>
*/
@NameInMap("ModifiedToTimeGMT")
public String modifiedToTimeGMT;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("OrderConfigJson")
public String orderConfigJson;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("OriginatorId")
public String originatorId;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>{\"textField\":\"123\"}</p>
*/
@NameInMap("SearchFieldJson")
public String searchFieldJson;
/**
* <strong>example:</strong>
* <p>hexxyy</p>
*/
@NameInMap("SystemToken")
public String systemToken;
/**
* <strong>example:</strong>
* <p>1045001</p>
*/
@NameInMap("TaskId")
public String taskId;
public static GetInstancesRequest build(java.util.Map<String, ?> map) throws Exception {
GetInstancesRequest self = new GetInstancesRequest();
return TeaModel.build(map, self);
}
public GetInstancesRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetInstancesRequest setApprovedResult(String approvedResult) {
this.approvedResult = approvedResult;
return this;
}
public String getApprovedResult() {
return this.approvedResult;
}
public GetInstancesRequest setCreateFromTimeGMT(String createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public String getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetInstancesRequest setCreateToTimeGMT(String createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public String getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetInstancesRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetInstancesRequest setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
return this;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public GetInstancesRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetInstancesRequest setModifiedFromTimeGMT(String modifiedFromTimeGMT) {
this.modifiedFromTimeGMT = modifiedFromTimeGMT;
return this;
}
public String getModifiedFromTimeGMT() {
return this.modifiedFromTimeGMT;
}
public GetInstancesRequest setModifiedToTimeGMT(String modifiedToTimeGMT) {
this.modifiedToTimeGMT = modifiedToTimeGMT;
return this;
}
public String getModifiedToTimeGMT() {
return this.modifiedToTimeGMT;
}
public GetInstancesRequest setOrderConfigJson(String orderConfigJson) {
this.orderConfigJson = orderConfigJson;
return this;
}
public String getOrderConfigJson() {
return this.orderConfigJson;
}
public GetInstancesRequest setOriginatorId(String originatorId) {
this.originatorId = originatorId;
return this;
}
public String getOriginatorId() {
return this.originatorId;
}
public GetInstancesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetInstancesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetInstancesRequest setSearchFieldJson(String searchFieldJson) {
this.searchFieldJson = searchFieldJson;
return this;
}
public String getSearchFieldJson() {
return this.searchFieldJson;
}
public GetInstancesRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public GetInstancesRequest setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String 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/GetInstancesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetInstancesResponseBody body;
public static GetInstancesResponse build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponse self = new GetInstancesResponse();
return TeaModel.build(map, self);
}
public GetInstancesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetInstancesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetInstancesResponse setBody(GetInstancesResponseBody body) {
this.body = body;
return this;
}
public GetInstancesResponseBody 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/GetInstancesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List<GetInstancesResponseBodyData> 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 GetInstancesResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBody self = new GetInstancesResponseBody();
return TeaModel.build(map, self);
}
public GetInstancesResponseBody setData(java.util.List<GetInstancesResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetInstancesResponseBodyData> getData() {
return this.data;
}
public GetInstancesResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetInstancesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetInstancesResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetInstancesResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetInstancesResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetInstancesResponseBodyDataActionExecutorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstancesResponseBodyDataActionExecutorName build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBodyDataActionExecutorName self = new GetInstancesResponseBodyDataActionExecutorName();
return TeaModel.build(map, self);
}
public GetInstancesResponseBodyDataActionExecutorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstancesResponseBodyDataActionExecutorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstancesResponseBodyDataActionExecutorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstancesResponseBodyDataActionExecutor extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DeptName")
public String deptName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstancesResponseBodyDataActionExecutorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstancesResponseBodyDataActionExecutor build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBodyDataActionExecutor self = new GetInstancesResponseBodyDataActionExecutor();
return TeaModel.build(map, self);
}
public GetInstancesResponseBodyDataActionExecutor setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetInstancesResponseBodyDataActionExecutor setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstancesResponseBodyDataActionExecutor setName(GetInstancesResponseBodyDataActionExecutorName name) {
this.name = name;
return this;
}
public GetInstancesResponseBodyDataActionExecutorName getName() {
return this.name;
}
public GetInstancesResponseBodyDataActionExecutor setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetInstancesResponseBodyDataOriginatorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetInstancesResponseBodyDataOriginatorName build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBodyDataOriginatorName self = new GetInstancesResponseBodyDataOriginatorName();
return TeaModel.build(map, self);
}
public GetInstancesResponseBodyDataOriginatorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetInstancesResponseBodyDataOriginatorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetInstancesResponseBodyDataOriginatorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetInstancesResponseBodyDataOriginator extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DeptName")
public String deptName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetInstancesResponseBodyDataOriginatorName name;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetInstancesResponseBodyDataOriginator build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBodyDataOriginator self = new GetInstancesResponseBodyDataOriginator();
return TeaModel.build(map, self);
}
public GetInstancesResponseBodyDataOriginator setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public GetInstancesResponseBodyDataOriginator setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetInstancesResponseBodyDataOriginator setName(GetInstancesResponseBodyDataOriginatorName name) {
this.name = name;
return this;
}
public GetInstancesResponseBodyDataOriginatorName getName() {
return this.name;
}
public GetInstancesResponseBodyDataOriginator setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetInstancesResponseBodyData extends TeaModel {
@NameInMap("ActionExecutor")
public java.util.List<GetInstancesResponseBodyDataActionExecutor> actionExecutor;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("ApprovedResult")
public String approvedResult;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateTimeGMT")
public String createTimeGMT;
@NameInMap("Data")
public java.util.Map<String, ?> data;
/**
* <strong>example:</strong>
* <p>FORM-EF6Y4G8WO2FN0SUB43TDQ3CGC3FMFQ1G9400RCJ3</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("InstanceStatus")
public String instanceStatus;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("ModifiedTimeGMT")
public String modifiedTimeGMT;
@NameInMap("Originator")
public GetInstancesResponseBodyDataOriginator originator;
/**
* <strong>example:</strong>
* <p>TPROC--X1Gxxx</p>
*/
@NameInMap("ProcessCode")
public String processCode;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>小红发起的请购单</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>1.0</p>
*/
@NameInMap("Version")
public Long version;
public static GetInstancesResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetInstancesResponseBodyData self = new GetInstancesResponseBodyData();
return TeaModel.build(map, self);
}
public GetInstancesResponseBodyData setActionExecutor(java.util.List<GetInstancesResponseBodyDataActionExecutor> actionExecutor) {
this.actionExecutor = actionExecutor;
return this;
}
public java.util.List<GetInstancesResponseBodyDataActionExecutor> getActionExecutor() {
return this.actionExecutor;
}
public GetInstancesResponseBodyData setApprovedResult(String approvedResult) {
this.approvedResult = approvedResult;
return this;
}
public String getApprovedResult() {
return this.approvedResult;
}
public GetInstancesResponseBodyData setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetInstancesResponseBodyData setData(java.util.Map<String, ?> data) {
this.data = data;
return this;
}
public java.util.Map<String, ?> getData() {
return this.data;
}
public GetInstancesResponseBodyData setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetInstancesResponseBodyData setInstanceStatus(String instanceStatus) {
this.instanceStatus = instanceStatus;
return this;
}
public String getInstanceStatus() {
return this.instanceStatus;
}
public GetInstancesResponseBodyData setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
public GetInstancesResponseBodyData setOriginator(GetInstancesResponseBodyDataOriginator originator) {
this.originator = originator;
return this;
}
public GetInstancesResponseBodyDataOriginator getOriginator() {
return this.originator;
}
public GetInstancesResponseBodyData setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public GetInstancesResponseBodyData setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetInstancesResponseBodyData setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetInstancesResponseBodyData 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/GetInstancesShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstancesShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetInstancesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstancesShrinkHeaders self = new GetInstancesShrinkHeaders();
return TeaModel.build(map, self);
}
public GetInstancesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstancesShrinkHeaders 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/GetLiveReplayUrlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetLiveReplayUrlHeadersAccountContext accountContext;
public static GetLiveReplayUrlHeaders build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlHeaders self = new GetLiveReplayUrlHeaders();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetLiveReplayUrlHeaders setAccountContext(GetLiveReplayUrlHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetLiveReplayUrlHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetLiveReplayUrlHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetLiveReplayUrlHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlHeadersAccountContext self = new GetLiveReplayUrlHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlHeadersAccountContext 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/GetLiveReplayUrlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4d38xxxxx</p>
*/
@NameInMap("LiveId")
public String liveId;
@NameInMap("TenantContext")
public GetLiveReplayUrlRequestTenantContext tenantContext;
public static GetLiveReplayUrlRequest build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlRequest self = new GetLiveReplayUrlRequest();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public GetLiveReplayUrlRequest setTenantContext(GetLiveReplayUrlRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetLiveReplayUrlRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetLiveReplayUrlRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetLiveReplayUrlRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlRequestTenantContext self = new GetLiveReplayUrlRequestTenantContext();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlRequestTenantContext 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/GetLiveReplayUrlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetLiveReplayUrlResponseBody body;
public static GetLiveReplayUrlResponse build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlResponse self = new GetLiveReplayUrlResponse();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetLiveReplayUrlResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetLiveReplayUrlResponse setBody(GetLiveReplayUrlResponseBody body) {
this.body = body;
return this;
}
public GetLiveReplayUrlResponseBody 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/GetLiveReplayUrlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://xxxxxxxx">https://xxxxxxxx</a></p>
*/
@NameInMap("replayUrl")
public String replayUrl;
/**
* <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;
public static GetLiveReplayUrlResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlResponseBody self = new GetLiveReplayUrlResponseBody();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlResponseBody setReplayUrl(String replayUrl) {
this.replayUrl = replayUrl;
return this;
}
public String getReplayUrl() {
return this.replayUrl;
}
public GetLiveReplayUrlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetLiveReplayUrlResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetLiveReplayUrlResponseBody 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/GetLiveReplayUrlShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetLiveReplayUrlShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlShrinkHeaders self = new GetLiveReplayUrlShrinkHeaders();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetLiveReplayUrlShrinkHeaders 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/GetLiveReplayUrlShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetLiveReplayUrlShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4d38xxxxx</p>
*/
@NameInMap("LiveId")
public String liveId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetLiveReplayUrlShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetLiveReplayUrlShrinkRequest self = new GetLiveReplayUrlShrinkRequest();
return TeaModel.build(map, self);
}
public GetLiveReplayUrlShrinkRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public GetLiveReplayUrlShrinkRequest 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/GetMeCorpSubmissionHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeCorpSubmissionHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMeCorpSubmissionHeadersAccountContext accountContext;
public static GetMeCorpSubmissionHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionHeaders self = new GetMeCorpSubmissionHeaders();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMeCorpSubmissionHeaders setAccountContext(GetMeCorpSubmissionHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMeCorpSubmissionHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMeCorpSubmissionHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMeCorpSubmissionHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionHeadersAccountContext self = new GetMeCorpSubmissionHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionHeadersAccountContext 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/GetMeCorpSubmissionRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeCorpSubmissionRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>[\"APP_xxx\",\"APP_xxx\"]</p>
*/
@NameInMap("AppTypes")
public String appTypes;
/**
* <strong>example:</strong>
* <p>ding123</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <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>{}</p>
*/
@NameInMap("Keyword")
public String keyword;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>[\"xx\",\"xxx\"]</p>
*/
@NameInMap("ProcessCodes")
public String processCodes;
/**
* <strong>example:</strong>
* <p>JHASD123HAXXX</p>
*/
@NameInMap("Token")
public String token;
public static GetMeCorpSubmissionRequest build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionRequest self = new GetMeCorpSubmissionRequest();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionRequest setAppTypes(String appTypes) {
this.appTypes = appTypes;
return this;
}
public String getAppTypes() {
return this.appTypes;
}
public GetMeCorpSubmissionRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetMeCorpSubmissionRequest setCreateFromTimeGMT(Long createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public Long getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetMeCorpSubmissionRequest setCreateToTimeGMT(Long createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public Long getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetMeCorpSubmissionRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public GetMeCorpSubmissionRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetMeCorpSubmissionRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetMeCorpSubmissionRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetMeCorpSubmissionRequest setProcessCodes(String processCodes) {
this.processCodes = processCodes;
return this;
}
public String getProcessCodes() {
return this.processCodes;
}
public GetMeCorpSubmissionRequest setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMeCorpSubmissionResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeCorpSubmissionResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMeCorpSubmissionResponseBody body;
public static GetMeCorpSubmissionResponse build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionResponse self = new GetMeCorpSubmissionResponse();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMeCorpSubmissionResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMeCorpSubmissionResponse setBody(GetMeCorpSubmissionResponseBody body) {
this.body = body;
return this;
}
public GetMeCorpSubmissionResponseBody 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/GetMeCorpSubmissionResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeCorpSubmissionResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List<GetMeCorpSubmissionResponseBodyData> 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 GetMeCorpSubmissionResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionResponseBody self = new GetMeCorpSubmissionResponseBody();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionResponseBody setData(java.util.List<GetMeCorpSubmissionResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetMeCorpSubmissionResponseBodyData> getData() {
return this.data;
}
public GetMeCorpSubmissionResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetMeCorpSubmissionResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMeCorpSubmissionResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetMeCorpSubmissionResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMeCorpSubmissionResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetMeCorpSubmissionResponseBodyDataActioner extends TeaModel {
/**
* <strong>example:</strong>
* <p>某研究部</p>
*/
@NameInMap("BuName")
public String buName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
/**
* <strong>example:</strong>
* <p>正式</p>
*/
@NameInMap("EmployeeType")
public String employeeType;
/**
* <strong>example:</strong>
* <p>official</p>
*/
@NameInMap("EmployeeTypeInformation")
public String employeeTypeInformation;
/**
* <strong>example:</strong>
* <p>123311221</p>
*/
@NameInMap("HumanResourceGroupWorkNumber")
public String humanResourceGroupWorkNumber;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsSystemAdmin")
public Boolean isSystemAdmin;
/**
* <strong>example:</strong>
* <p>P7</p>
*/
@NameInMap("Level")
public String level;
/**
* <strong>example:</strong>
* <p>请购单</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>与心</p>
*/
@NameInMap("NickName")
public String nickName;
/**
* <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><a href="https://oss/zhangsan.png">https://oss/zhangsan.png</a></p>
*/
@NameInMap("PersonalPhotoUrl")
public String personalPhotoUrl;
/**
* <strong>example:</strong>
* <p>XIAOHONG</p>
*/
@NameInMap("PinyinNameAll")
public String pinyinNameAll;
/**
* <strong>example:</strong>
* <p>xiaohong</p>
*/
@NameInMap("PinyinNickName")
public String pinyinNickName;
/**
* <strong>example:</strong>
* <p>running</p>
*/
@NameInMap("State")
public String state;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("SuperUserId")
public String superUserId;
/**
* <strong>example:</strong>
* <p>wang123</p>
*/
@NameInMap("TbWang")
public String tbWang;
/**
* <strong>example:</strong>
* <p>manager123</p>
*/
@NameInMap("UserId")
public String userId;
public static GetMeCorpSubmissionResponseBodyDataActioner build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionResponseBodyDataActioner self = new GetMeCorpSubmissionResponseBodyDataActioner();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionResponseBodyDataActioner setBuName(String buName) {
this.buName = buName;
return this;
}
public String getBuName() {
return this.buName;
}
public GetMeCorpSubmissionResponseBodyDataActioner setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetMeCorpSubmissionResponseBodyDataActioner setEmployeeType(String employeeType) {
this.employeeType = employeeType;
return this;
}
public String getEmployeeType() {
return this.employeeType;
}
public GetMeCorpSubmissionResponseBodyDataActioner setEmployeeTypeInformation(String employeeTypeInformation) {
this.employeeTypeInformation = employeeTypeInformation;
return this;
}
public String getEmployeeTypeInformation() {
return this.employeeTypeInformation;
}
public GetMeCorpSubmissionResponseBodyDataActioner setHumanResourceGroupWorkNumber(String humanResourceGroupWorkNumber) {
this.humanResourceGroupWorkNumber = humanResourceGroupWorkNumber;
return this;
}
public String getHumanResourceGroupWorkNumber() {
return this.humanResourceGroupWorkNumber;
}
public GetMeCorpSubmissionResponseBodyDataActioner setIsSystemAdmin(Boolean isSystemAdmin) {
this.isSystemAdmin = isSystemAdmin;
return this;
}
public Boolean getIsSystemAdmin() {
return this.isSystemAdmin;
}
public GetMeCorpSubmissionResponseBodyDataActioner setLevel(String level) {
this.level = level;
return this;
}
public String getLevel() {
return this.level;
}
public GetMeCorpSubmissionResponseBodyDataActioner setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetMeCorpSubmissionResponseBodyDataActioner setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public GetMeCorpSubmissionResponseBodyDataActioner setOrderNumber(String orderNumber) {
this.orderNumber = orderNumber;
return this;
}
public String getOrderNumber() {
return this.orderNumber;
}
public GetMeCorpSubmissionResponseBodyDataActioner setPersonalPhoto(String personalPhoto) {
this.personalPhoto = personalPhoto;
return this;
}
public String getPersonalPhoto() {
return this.personalPhoto;
}
public GetMeCorpSubmissionResponseBodyDataActioner setPersonalPhotoUrl(String personalPhotoUrl) {
this.personalPhotoUrl = personalPhotoUrl;
return this;
}
public String getPersonalPhotoUrl() {
return this.personalPhotoUrl;
}
public GetMeCorpSubmissionResponseBodyDataActioner setPinyinNameAll(String pinyinNameAll) {
this.pinyinNameAll = pinyinNameAll;
return this;
}
public String getPinyinNameAll() {
return this.pinyinNameAll;
}
public GetMeCorpSubmissionResponseBodyDataActioner setPinyinNickName(String pinyinNickName) {
this.pinyinNickName = pinyinNickName;
return this;
}
public String getPinyinNickName() {
return this.pinyinNickName;
}
public GetMeCorpSubmissionResponseBodyDataActioner setState(String state) {
this.state = state;
return this;
}
public String getState() {
return this.state;
}
public GetMeCorpSubmissionResponseBodyDataActioner setSuperUserId(String superUserId) {
this.superUserId = superUserId;
return this;
}
public String getSuperUserId() {
return this.superUserId;
}
public GetMeCorpSubmissionResponseBodyDataActioner setTbWang(String tbWang) {
this.tbWang = tbWang;
return this;
}
public String getTbWang() {
return this.tbWang;
}
public GetMeCorpSubmissionResponseBodyDataActioner setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances 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("ActivityNameEn")
public String activityNameEn;
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("Id")
public Long id;
public static GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances self = new GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances setActivityId(String activityId) {
this.activityId = activityId;
return this;
}
public String getActivityId() {
return this.activityId;
}
public GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances setActivityInstanceStatus(String activityInstanceStatus) {
this.activityInstanceStatus = activityInstanceStatus;
return this;
}
public String getActivityInstanceStatus() {
return this.activityInstanceStatus;
}
public GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances setActivityName(String activityName) {
this.activityName = activityName;
return this;
}
public String getActivityName() {
return this.activityName;
}
public GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances setActivityNameEn(String activityNameEn) {
this.activityNameEn = activityNameEn;
return this;
}
public String getActivityNameEn() {
return this.activityNameEn;
}
public GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
}
public static class GetMeCorpSubmissionResponseBodyData extends TeaModel {
@NameInMap("Actioner")
public java.util.List<GetMeCorpSubmissionResponseBodyDataActioner> actioner;
@NameInMap("ActionerId")
public java.util.List<String> actionerId;
@NameInMap("ActionerName")
public java.util.List<String> actionerName;
/**
* <strong>example:</strong>
* <p>APP_PBKT0xxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>2021-01-01</p>
*/
@NameInMap("CreateTimeGMT")
public String createTimeGMT;
@NameInMap("CurrentActivityInstances")
public java.util.List<GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances> currentActivityInstances;
@NameInMap("DataMap")
public java.util.Map<String, ?> dataMap;
/**
* <strong>example:</strong>
* <p>edit</p>
*/
@NameInMap("DataType")
public String dataType;
/**
* <strong>example:</strong>
* <p>2021-01-01</p>
*/
@NameInMap("FinishTimeGMT")
public String finishTimeGMT;
/**
* <strong>example:</strong>
* <p>FINST-NJYJxxx</p>
*/
@NameInMap("FormInstanceId")
public String formInstanceId;
/**
* <strong>example:</strong>
* <p>FORM-EF6xxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>符合宜搭表单实例格式的json数据</p>
*/
@NameInMap("InstanceValue")
public String instanceValue;
/**
* <strong>example:</strong>
* <p>2021-01-01</p>
*/
@NameInMap("ModifiedTimeGMT")
public String modifiedTimeGMT;
/**
* <strong>example:</strong>
* <p>zhangsan@mediaId</p>
*/
@NameInMap("OriginatorAvatar")
public String originatorAvatar;
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("OriginatorDisplayName")
public String originatorDisplayName;
/**
* <strong>example:</strong>
* <p>manager123</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>TPROC--X1Gxxx</p>
*/
@NameInMap("ProcessCode")
public String processCode;
/**
* <strong>example:</strong>
* <p>52330</p>
*/
@NameInMap("ProcessId")
public Long processId;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-xxx</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>finished</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>小红发起的请购单</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Version")
public Long version;
public static GetMeCorpSubmissionResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionResponseBodyData self = new GetMeCorpSubmissionResponseBodyData();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionResponseBodyData setActioner(java.util.List<GetMeCorpSubmissionResponseBodyDataActioner> actioner) {
this.actioner = actioner;
return this;
}
public java.util.List<GetMeCorpSubmissionResponseBodyDataActioner> getActioner() {
return this.actioner;
}
public GetMeCorpSubmissionResponseBodyData setActionerId(java.util.List<String> actionerId) {
this.actionerId = actionerId;
return this;
}
public java.util.List<String> getActionerId() {
return this.actionerId;
}
public GetMeCorpSubmissionResponseBodyData setActionerName(java.util.List<String> actionerName) {
this.actionerName = actionerName;
return this;
}
public java.util.List<String> getActionerName() {
return this.actionerName;
}
public GetMeCorpSubmissionResponseBodyData setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetMeCorpSubmissionResponseBodyData setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetMeCorpSubmissionResponseBodyData setCurrentActivityInstances(java.util.List<GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances> currentActivityInstances) {
this.currentActivityInstances = currentActivityInstances;
return this;
}
public java.util.List<GetMeCorpSubmissionResponseBodyDataCurrentActivityInstances> getCurrentActivityInstances() {
return this.currentActivityInstances;
}
public GetMeCorpSubmissionResponseBodyData setDataMap(java.util.Map<String, ?> dataMap) {
this.dataMap = dataMap;
return this;
}
public java.util.Map<String, ?> getDataMap() {
return this.dataMap;
}
public GetMeCorpSubmissionResponseBodyData setDataType(String dataType) {
this.dataType = dataType;
return this;
}
public String getDataType() {
return this.dataType;
}
public GetMeCorpSubmissionResponseBodyData setFinishTimeGMT(String finishTimeGMT) {
this.finishTimeGMT = finishTimeGMT;
return this;
}
public String getFinishTimeGMT() {
return this.finishTimeGMT;
}
public GetMeCorpSubmissionResponseBodyData setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
public GetMeCorpSubmissionResponseBodyData setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetMeCorpSubmissionResponseBodyData setInstanceValue(String instanceValue) {
this.instanceValue = instanceValue;
return this;
}
public String getInstanceValue() {
return this.instanceValue;
}
public GetMeCorpSubmissionResponseBodyData setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
public GetMeCorpSubmissionResponseBodyData setOriginatorAvatar(String originatorAvatar) {
this.originatorAvatar = originatorAvatar;
return this;
}
public String getOriginatorAvatar() {
return this.originatorAvatar;
}
public GetMeCorpSubmissionResponseBodyData setOriginatorDisplayName(String originatorDisplayName) {
this.originatorDisplayName = originatorDisplayName;
return this;
}
public String getOriginatorDisplayName() {
return this.originatorDisplayName;
}
public GetMeCorpSubmissionResponseBodyData setOriginatorId(String originatorId) {
this.originatorId = originatorId;
return this;
}
public String getOriginatorId() {
return this.originatorId;
}
public GetMeCorpSubmissionResponseBodyData setProcessApprovedResult(String processApprovedResult) {
this.processApprovedResult = processApprovedResult;
return this;
}
public String getProcessApprovedResult() {
return this.processApprovedResult;
}
public GetMeCorpSubmissionResponseBodyData setProcessApprovedResultText(String processApprovedResultText) {
this.processApprovedResultText = processApprovedResultText;
return this;
}
public String getProcessApprovedResultText() {
return this.processApprovedResultText;
}
public GetMeCorpSubmissionResponseBodyData setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public GetMeCorpSubmissionResponseBodyData setProcessId(Long processId) {
this.processId = processId;
return this;
}
public Long getProcessId() {
return this.processId;
}
public GetMeCorpSubmissionResponseBodyData setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetMeCorpSubmissionResponseBodyData setProcessInstanceStatus(String processInstanceStatus) {
this.processInstanceStatus = processInstanceStatus;
return this;
}
public String getProcessInstanceStatus() {
return this.processInstanceStatus;
}
public GetMeCorpSubmissionResponseBodyData setProcessInstanceStatusText(String processInstanceStatusText) {
this.processInstanceStatusText = processInstanceStatusText;
return this;
}
public String getProcessInstanceStatusText() {
return this.processInstanceStatusText;
}
public GetMeCorpSubmissionResponseBodyData setProcessName(String processName) {
this.processName = processName;
return this;
}
public String getProcessName() {
return this.processName;
}
public GetMeCorpSubmissionResponseBodyData setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetMeCorpSubmissionResponseBodyData 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/GetMeCorpSubmissionShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeCorpSubmissionShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMeCorpSubmissionShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMeCorpSubmissionShrinkHeaders self = new GetMeCorpSubmissionShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMeCorpSubmissionShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMeCorpSubmissionShrinkHeaders 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/GetMeetingRoomsScheduleHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMeetingRoomsScheduleHeadersAccountContext accountContext;
public static GetMeetingRoomsScheduleHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleHeaders self = new GetMeetingRoomsScheduleHeaders();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMeetingRoomsScheduleHeaders setAccountContext(GetMeetingRoomsScheduleHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMeetingRoomsScheduleHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMeetingRoomsScheduleHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMeetingRoomsScheduleHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleHeadersAccountContext self = new GetMeetingRoomsScheduleHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleHeadersAccountContext 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/GetMeetingRoomsScheduleRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("EndTime")
public String endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>["4002xxxxx"]</p>
*/
@NameInMap("RoomIds")
public java.util.List<String> roomIds;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("StartTime")
public String startTime;
public static GetMeetingRoomsScheduleRequest build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleRequest self = new GetMeetingRoomsScheduleRequest();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetMeetingRoomsScheduleRequest setRoomIds(java.util.List<String> roomIds) {
this.roomIds = roomIds;
return this;
}
public java.util.List<String> getRoomIds() {
return this.roomIds;
}
public GetMeetingRoomsScheduleRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMeetingRoomsScheduleResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMeetingRoomsScheduleResponseBody body;
public static GetMeetingRoomsScheduleResponse build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponse self = new GetMeetingRoomsScheduleResponse();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMeetingRoomsScheduleResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMeetingRoomsScheduleResponse setBody(GetMeetingRoomsScheduleResponseBody body) {
this.body = body;
return this;
}
public GetMeetingRoomsScheduleResponseBody 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/GetMeetingRoomsScheduleResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("scheduleInformation")
public java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformation> scheduleInformation;
public static GetMeetingRoomsScheduleResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBody self = new GetMeetingRoomsScheduleResponseBody();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMeetingRoomsScheduleResponseBody setScheduleInformation(java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformation> scheduleInformation) {
this.scheduleInformation = scheduleInformation;
return this;
}
public java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformation> getScheduleInformation() {
return this.scheduleInformation;
}
public static class GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-02T10:15:30+08:00</p>
*/
@NameInMap("DateTime")
public String dateTime;
/**
* <strong>example:</strong>
* <p>Asia/Shanghai</p>
*/
@NameInMap("TimeZone")
public String timeZone;
public static GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd self = new GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("Id")
public String id;
public static GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer self = new GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
}
public static class GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-02T10:15:30+08:00</p>
*/
@NameInMap("DateTime")
public String dateTime;
/**
* <strong>example:</strong>
* <p>Asia/Shanghai</p>
*/
@NameInMap("TimeZone")
public String timeZone;
public static GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart self = new GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems extends TeaModel {
@NameInMap("End")
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd end;
/**
* <strong>example:</strong>
* <p>UzZvxxxxx</p>
*/
@NameInMap("EventId")
public String eventId;
@NameInMap("Organizer")
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer organizer;
@NameInMap("Start")
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart start;
/**
* <strong>example:</strong>
* <p>BUSY</p>
*/
@NameInMap("Status")
public String status;
public static GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems self = new GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems setEnd(GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd end) {
this.end = end;
return this;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsEnd getEnd() {
return this.end;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems setOrganizer(GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer organizer) {
this.organizer = organizer;
return this;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsOrganizer getOrganizer() {
return this.organizer;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems setStart(GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart start) {
this.start = start;
return this;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItemsStart getStart() {
return this.start;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
}
public static class GetMeetingRoomsScheduleResponseBodyScheduleInformation extends TeaModel {
/**
* <strong>example:</strong>
* <p>无权限</p>
*/
@NameInMap("Error")
public String error;
/**
* <strong>example:</strong>
* <p>4002f89xxxxx</p>
*/
@NameInMap("RoomId")
public String roomId;
@NameInMap("ScheduleItems")
public java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems> scheduleItems;
public static GetMeetingRoomsScheduleResponseBodyScheduleInformation build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleResponseBodyScheduleInformation self = new GetMeetingRoomsScheduleResponseBodyScheduleInformation();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformation setError(String error) {
this.error = error;
return this;
}
public String getError() {
return this.error;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformation setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
public GetMeetingRoomsScheduleResponseBodyScheduleInformation setScheduleItems(java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems> scheduleItems) {
this.scheduleItems = scheduleItems;
return this;
}
public java.util.List<GetMeetingRoomsScheduleResponseBodyScheduleInformationScheduleItems> getScheduleItems() {
return this.scheduleItems;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMeetingRoomsScheduleShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMeetingRoomsScheduleShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleShrinkHeaders self = new GetMeetingRoomsScheduleShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMeetingRoomsScheduleShrinkHeaders 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/GetMeetingRoomsScheduleShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMeetingRoomsScheduleShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("EndTime")
public String endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>["4002xxxxx"]</p>
*/
@NameInMap("RoomIds")
public String roomIdsShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("StartTime")
public String startTime;
public static GetMeetingRoomsScheduleShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMeetingRoomsScheduleShrinkRequest self = new GetMeetingRoomsScheduleShrinkRequest();
return TeaModel.build(map, self);
}
public GetMeetingRoomsScheduleShrinkRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public GetMeetingRoomsScheduleShrinkRequest setRoomIdsShrink(String roomIdsShrink) {
this.roomIdsShrink = roomIdsShrink;
return this;
}
public String getRoomIdsShrink() {
return this.roomIdsShrink;
}
public GetMeetingRoomsScheduleShrinkRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMineWorkspaceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMineWorkspaceHeadersAccountContext accountContext;
public static GetMineWorkspaceHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceHeaders self = new GetMineWorkspaceHeaders();
return TeaModel.build(map, self);
}
public GetMineWorkspaceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMineWorkspaceHeaders setAccountContext(GetMineWorkspaceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMineWorkspaceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMineWorkspaceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMineWorkspaceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceHeadersAccountContext self = new GetMineWorkspaceHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMineWorkspaceHeadersAccountContext 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/GetMineWorkspaceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceRequest extends TeaModel {
@NameInMap("Request")
public java.util.Map<String, ?> request;
@NameInMap("TenantContext")
public GetMineWorkspaceRequestTenantContext tenantContext;
public static GetMineWorkspaceRequest build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceRequest self = new GetMineWorkspaceRequest();
return TeaModel.build(map, self);
}
public GetMineWorkspaceRequest setRequest(java.util.Map<String, ?> request) {
this.request = request;
return this;
}
public java.util.Map<String, ?> getRequest() {
return this.request;
}
public GetMineWorkspaceRequest setTenantContext(GetMineWorkspaceRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMineWorkspaceRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetMineWorkspaceRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMineWorkspaceRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceRequestTenantContext self = new GetMineWorkspaceRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMineWorkspaceRequestTenantContext 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/GetMineWorkspaceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMineWorkspaceResponseBody body;
public static GetMineWorkspaceResponse build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceResponse self = new GetMineWorkspaceResponse();
return TeaModel.build(map, self);
}
public GetMineWorkspaceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMineWorkspaceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMineWorkspaceResponse setBody(GetMineWorkspaceResponseBody body) {
this.body = body;
return this;
}
public GetMineWorkspaceResponseBody 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/GetMineWorkspaceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("workspace")
public GetMineWorkspaceResponseBodyWorkspace workspace;
public static GetMineWorkspaceResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceResponseBody self = new GetMineWorkspaceResponseBody();
return TeaModel.build(map, self);
}
public GetMineWorkspaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMineWorkspaceResponseBody setWorkspace(GetMineWorkspaceResponseBodyWorkspace workspace) {
this.workspace = workspace;
return this;
}
public GetMineWorkspaceResponseBodyWorkspace getWorkspace() {
return this.workspace;
}
public static class GetMineWorkspaceResponseBodyWorkspaceIcon extends TeaModel {
/**
* <strong>example:</strong>
* <p>URL</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p><a href="https://example/file-manage-files/zh-CN/202***13/ldet/avatar3.jpg">https://example/file-manage-files/zh-CN/202***13/ldet/avatar3.jpg</a></p>
*/
@NameInMap("Value")
public String value;
public static GetMineWorkspaceResponseBodyWorkspaceIcon build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceResponseBodyWorkspaceIcon self = new GetMineWorkspaceResponseBodyWorkspaceIcon();
return TeaModel.build(map, self);
}
public GetMineWorkspaceResponseBodyWorkspaceIcon setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetMineWorkspaceResponseBodyWorkspaceIcon setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class GetMineWorkspaceResponseBodyWorkspace extends TeaModel {
/**
* <strong>example:</strong>
* <p>ding16b241fd05********288</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p><a href="https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg">https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg</a></p>
*/
@NameInMap("Cover")
public String cover;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>workspace_description</p>
*/
@NameInMap("Description")
public String description;
@NameInMap("Icon")
public GetMineWorkspaceResponseBodyWorkspaceIcon icon;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>workspace_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>READER</p>
*/
@NameInMap("PermissionRole")
public String permissionRole;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("RootNodeId")
public String rootNodeId;
/**
* <strong>example:</strong>
* <p>lHiicjNFM2iSFYSdz2iPuI8ZwiEiE</p>
*/
@NameInMap("TeamId")
public String teamId;
/**
* <strong>example:</strong>
* <p>TEAM</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>workspace_url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>9r09jSO3WARyxd8A</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static GetMineWorkspaceResponseBodyWorkspace build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceResponseBodyWorkspace self = new GetMineWorkspaceResponseBodyWorkspace();
return TeaModel.build(map, self);
}
public GetMineWorkspaceResponseBodyWorkspace setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetMineWorkspaceResponseBodyWorkspace setCover(String cover) {
this.cover = cover;
return this;
}
public String getCover() {
return this.cover;
}
public GetMineWorkspaceResponseBodyWorkspace setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetMineWorkspaceResponseBodyWorkspace setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetMineWorkspaceResponseBodyWorkspace setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetMineWorkspaceResponseBodyWorkspace setIcon(GetMineWorkspaceResponseBodyWorkspaceIcon icon) {
this.icon = icon;
return this;
}
public GetMineWorkspaceResponseBodyWorkspaceIcon getIcon() {
return this.icon;
}
public GetMineWorkspaceResponseBodyWorkspace setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetMineWorkspaceResponseBodyWorkspace setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetMineWorkspaceResponseBodyWorkspace setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetMineWorkspaceResponseBodyWorkspace setPermissionRole(String permissionRole) {
this.permissionRole = permissionRole;
return this;
}
public String getPermissionRole() {
return this.permissionRole;
}
public GetMineWorkspaceResponseBodyWorkspace setRootNodeId(String rootNodeId) {
this.rootNodeId = rootNodeId;
return this;
}
public String getRootNodeId() {
return this.rootNodeId;
}
public GetMineWorkspaceResponseBodyWorkspace setTeamId(String teamId) {
this.teamId = teamId;
return this;
}
public String getTeamId() {
return this.teamId;
}
public GetMineWorkspaceResponseBodyWorkspace setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetMineWorkspaceResponseBodyWorkspace setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public GetMineWorkspaceResponseBodyWorkspace 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/GetMineWorkspaceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMineWorkspaceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceShrinkHeaders self = new GetMineWorkspaceShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMineWorkspaceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMineWorkspaceShrinkHeaders 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/GetMineWorkspaceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMineWorkspaceShrinkRequest extends TeaModel {
@NameInMap("Request")
public String requestShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetMineWorkspaceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMineWorkspaceShrinkRequest self = new GetMineWorkspaceShrinkRequest();
return TeaModel.build(map, self);
}
public GetMineWorkspaceShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
public GetMineWorkspaceShrinkRequest 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/GetMultiDimTableAllFieldsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMultiDimTableAllFieldsHeadersAccountContext accountContext;
public static GetMultiDimTableAllFieldsHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsHeaders self = new GetMultiDimTableAllFieldsHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableAllFieldsHeaders setAccountContext(GetMultiDimTableAllFieldsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMultiDimTableAllFieldsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMultiDimTableAllFieldsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMultiDimTableAllFieldsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsHeadersAccountContext self = new GetMultiDimTableAllFieldsHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsHeadersAccountContext 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/GetMultiDimTableAllFieldsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>338534</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public GetMultiDimTableAllFieldsRequestTenantContext tenantContext;
public static GetMultiDimTableAllFieldsRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsRequest self = new GetMultiDimTableAllFieldsRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableAllFieldsRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableAllFieldsRequest setTenantContext(GetMultiDimTableAllFieldsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMultiDimTableAllFieldsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetMultiDimTableAllFieldsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMultiDimTableAllFieldsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsRequestTenantContext self = new GetMultiDimTableAllFieldsRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsRequestTenantContext 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/GetMultiDimTableAllFieldsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMultiDimTableAllFieldsResponseBody body;
public static GetMultiDimTableAllFieldsResponse build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsResponse self = new GetMultiDimTableAllFieldsResponse();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultiDimTableAllFieldsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMultiDimTableAllFieldsResponse setBody(GetMultiDimTableAllFieldsResponseBody body) {
this.body = body;
return this;
}
public GetMultiDimTableAllFieldsResponseBody 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/GetMultiDimTableAllFieldsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("value")
public java.util.List<GetMultiDimTableAllFieldsResponseBodyValue> value;
/**
* <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 GetMultiDimTableAllFieldsResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsResponseBody self = new GetMultiDimTableAllFieldsResponseBody();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMultiDimTableAllFieldsResponseBody setValue(java.util.List<GetMultiDimTableAllFieldsResponseBodyValue> value) {
this.value = value;
return this;
}
public java.util.List<GetMultiDimTableAllFieldsResponseBodyValue> getValue() {
return this.value;
}
public GetMultiDimTableAllFieldsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMultiDimTableAllFieldsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetMultiDimTableAllFieldsResponseBodyValue extends TeaModel {
/**
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Property")
public java.util.Map<String, ?> property;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Type")
public String type;
public static GetMultiDimTableAllFieldsResponseBodyValue build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsResponseBodyValue self = new GetMultiDimTableAllFieldsResponseBodyValue();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsResponseBodyValue setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetMultiDimTableAllFieldsResponseBodyValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetMultiDimTableAllFieldsResponseBodyValue setProperty(java.util.Map<String, ?> property) {
this.property = property;
return this;
}
public java.util.Map<String, ?> getProperty() {
return this.property;
}
public GetMultiDimTableAllFieldsResponseBodyValue 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/GetMultiDimTableAllFieldsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMultiDimTableAllFieldsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsShrinkHeaders self = new GetMultiDimTableAllFieldsShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableAllFieldsShrinkHeaders 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/GetMultiDimTableAllFieldsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllFieldsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>338534</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetMultiDimTableAllFieldsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllFieldsShrinkRequest self = new GetMultiDimTableAllFieldsShrinkRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllFieldsShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableAllFieldsShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableAllFieldsShrinkRequest 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/GetMultiDimTableAllSheetsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMultiDimTableAllSheetsHeadersAccountContext accountContext;
public static GetMultiDimTableAllSheetsHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsHeaders self = new GetMultiDimTableAllSheetsHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableAllSheetsHeaders setAccountContext(GetMultiDimTableAllSheetsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMultiDimTableAllSheetsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMultiDimTableAllSheetsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMultiDimTableAllSheetsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsHeadersAccountContext self = new GetMultiDimTableAllSheetsHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsHeadersAccountContext 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/GetMultiDimTableAllSheetsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>144972</p>
*/
@NameInMap("BaseId")
public String baseId;
@NameInMap("TenantContext")
public GetMultiDimTableAllSheetsRequestTenantContext tenantContext;
public static GetMultiDimTableAllSheetsRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsRequest self = new GetMultiDimTableAllSheetsRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableAllSheetsRequest setTenantContext(GetMultiDimTableAllSheetsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMultiDimTableAllSheetsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetMultiDimTableAllSheetsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMultiDimTableAllSheetsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsRequestTenantContext self = new GetMultiDimTableAllSheetsRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsRequestTenantContext 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/GetMultiDimTableAllSheetsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMultiDimTableAllSheetsResponseBody body;
public static GetMultiDimTableAllSheetsResponse build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsResponse self = new GetMultiDimTableAllSheetsResponse();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultiDimTableAllSheetsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMultiDimTableAllSheetsResponse setBody(GetMultiDimTableAllSheetsResponseBody body) {
this.body = body;
return this;
}
public GetMultiDimTableAllSheetsResponseBody 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/GetMultiDimTableAllSheetsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("value")
public java.util.List<GetMultiDimTableAllSheetsResponseBodyValue> value;
/**
* <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 GetMultiDimTableAllSheetsResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsResponseBody self = new GetMultiDimTableAllSheetsResponseBody();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMultiDimTableAllSheetsResponseBody setValue(java.util.List<GetMultiDimTableAllSheetsResponseBodyValue> value) {
this.value = value;
return this;
}
public java.util.List<GetMultiDimTableAllSheetsResponseBodyValue> getValue() {
return this.value;
}
public GetMultiDimTableAllSheetsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMultiDimTableAllSheetsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetMultiDimTableAllSheetsResponseBodyValue extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Name")
public String name;
public static GetMultiDimTableAllSheetsResponseBodyValue build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsResponseBodyValue self = new GetMultiDimTableAllSheetsResponseBodyValue();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsResponseBodyValue setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetMultiDimTableAllSheetsResponseBodyValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMultiDimTableAllSheetsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMultiDimTableAllSheetsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsShrinkHeaders self = new GetMultiDimTableAllSheetsShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableAllSheetsShrinkHeaders 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/GetMultiDimTableAllSheetsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableAllSheetsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>144972</p>
*/
@NameInMap("BaseId")
public String baseId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetMultiDimTableAllSheetsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableAllSheetsShrinkRequest self = new GetMultiDimTableAllSheetsShrinkRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableAllSheetsShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableAllSheetsShrinkRequest 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/GetMultiDimTableRecordHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMultiDimTableRecordHeadersAccountContext accountContext;
public static GetMultiDimTableRecordHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordHeaders self = new GetMultiDimTableRecordHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableRecordHeaders setAccountContext(GetMultiDimTableRecordHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMultiDimTableRecordHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMultiDimTableRecordHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMultiDimTableRecordHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordHeadersAccountContext self = new GetMultiDimTableRecordHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordHeadersAccountContext 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/GetMultiDimTableRecordRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>101114</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("RecordId")
public String recordId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public GetMultiDimTableRecordRequestTenantContext tenantContext;
public static GetMultiDimTableRecordRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordRequest self = new GetMultiDimTableRecordRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableRecordRequest setRecordId(String recordId) {
this.recordId = recordId;
return this;
}
public String getRecordId() {
return this.recordId;
}
public GetMultiDimTableRecordRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableRecordRequest setTenantContext(GetMultiDimTableRecordRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMultiDimTableRecordRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetMultiDimTableRecordRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMultiDimTableRecordRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordRequestTenantContext self = new GetMultiDimTableRecordRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordRequestTenantContext 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/GetMultiDimTableRecordResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMultiDimTableRecordResponseBody body;
public static GetMultiDimTableRecordResponse build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordResponse self = new GetMultiDimTableRecordResponse();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultiDimTableRecordResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMultiDimTableRecordResponse setBody(GetMultiDimTableRecordResponseBody body) {
this.body = body;
return this;
}
public GetMultiDimTableRecordResponseBody 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/GetMultiDimTableRecordResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordResponseBody extends TeaModel {
@NameInMap("CreatedBy")
public GetMultiDimTableRecordResponseBodyCreatedBy createdBy;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("CreatedTime")
public Long createdTime;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Fields")
public java.util.Map<String, ?> fields;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("Id")
public String id;
@NameInMap("LastModifiedBy")
public GetMultiDimTableRecordResponseBodyLastModifiedBy lastModifiedBy;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("LastModifiedTime")
public Long lastModifiedTime;
/**
* <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;
public static GetMultiDimTableRecordResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordResponseBody self = new GetMultiDimTableRecordResponseBody();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordResponseBody setCreatedBy(GetMultiDimTableRecordResponseBodyCreatedBy createdBy) {
this.createdBy = createdBy;
return this;
}
public GetMultiDimTableRecordResponseBodyCreatedBy getCreatedBy() {
return this.createdBy;
}
public GetMultiDimTableRecordResponseBody setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
return this;
}
public Long getCreatedTime() {
return this.createdTime;
}
public GetMultiDimTableRecordResponseBody setFields(java.util.Map<String, ?> fields) {
this.fields = fields;
return this;
}
public java.util.Map<String, ?> getFields() {
return this.fields;
}
public GetMultiDimTableRecordResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetMultiDimTableRecordResponseBody setLastModifiedBy(GetMultiDimTableRecordResponseBodyLastModifiedBy lastModifiedBy) {
this.lastModifiedBy = lastModifiedBy;
return this;
}
public GetMultiDimTableRecordResponseBodyLastModifiedBy getLastModifiedBy() {
return this.lastModifiedBy;
}
public GetMultiDimTableRecordResponseBody setLastModifiedTime(Long lastModifiedTime) {
this.lastModifiedTime = lastModifiedTime;
return this;
}
public Long getLastModifiedTime() {
return this.lastModifiedTime;
}
public GetMultiDimTableRecordResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMultiDimTableRecordResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMultiDimTableRecordResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetMultiDimTableRecordResponseBodyCreatedBy extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UserId")
public String userId;
public static GetMultiDimTableRecordResponseBodyCreatedBy build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordResponseBodyCreatedBy self = new GetMultiDimTableRecordResponseBodyCreatedBy();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordResponseBodyCreatedBy setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class GetMultiDimTableRecordResponseBodyLastModifiedBy extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UserId")
public String userId;
public static GetMultiDimTableRecordResponseBodyLastModifiedBy build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordResponseBodyLastModifiedBy self = new GetMultiDimTableRecordResponseBodyLastModifiedBy();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordResponseBodyLastModifiedBy 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/GetMultiDimTableRecordShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMultiDimTableRecordShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordShrinkHeaders self = new GetMultiDimTableRecordShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableRecordShrinkHeaders 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/GetMultiDimTableRecordShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableRecordShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>101114</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("RecordId")
public String recordId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetMultiDimTableRecordShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableRecordShrinkRequest self = new GetMultiDimTableRecordShrinkRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableRecordShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableRecordShrinkRequest setRecordId(String recordId) {
this.recordId = recordId;
return this;
}
public String getRecordId() {
return this.recordId;
}
public GetMultiDimTableRecordShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableRecordShrinkRequest 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/GetMultiDimTableSheetHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMultiDimTableSheetHeadersAccountContext accountContext;
public static GetMultiDimTableSheetHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetHeaders self = new GetMultiDimTableSheetHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableSheetHeaders setAccountContext(GetMultiDimTableSheetHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMultiDimTableSheetHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMultiDimTableSheetHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMultiDimTableSheetHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetHeadersAccountContext self = new GetMultiDimTableSheetHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetHeadersAccountContext 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/GetMultiDimTableSheetRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>169899</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public GetMultiDimTableSheetRequestTenantContext tenantContext;
public static GetMultiDimTableSheetRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetRequest self = new GetMultiDimTableSheetRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableSheetRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableSheetRequest setTenantContext(GetMultiDimTableSheetRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMultiDimTableSheetRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetMultiDimTableSheetRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMultiDimTableSheetRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetRequestTenantContext self = new GetMultiDimTableSheetRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetRequestTenantContext 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/GetMultiDimTableSheetResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMultiDimTableSheetResponseBody body;
public static GetMultiDimTableSheetResponse build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetResponse self = new GetMultiDimTableSheetResponse();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultiDimTableSheetResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMultiDimTableSheetResponse setBody(GetMultiDimTableSheetResponseBody body) {
this.body = body;
return this;
}
public GetMultiDimTableSheetResponseBody 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/GetMultiDimTableSheetResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("id")
public String id;
/**
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("name")
public String name;
/**
* <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;
public static GetMultiDimTableSheetResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetResponseBody self = new GetMultiDimTableSheetResponseBody();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetMultiDimTableSheetResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetMultiDimTableSheetResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMultiDimTableSheetResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMultiDimTableSheetResponseBody 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/GetMultiDimTableSheetShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMultiDimTableSheetShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetShrinkHeaders self = new GetMultiDimTableSheetShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultiDimTableSheetShrinkHeaders 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/GetMultiDimTableSheetShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultiDimTableSheetShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>169899</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetMultiDimTableSheetShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultiDimTableSheetShrinkRequest self = new GetMultiDimTableSheetShrinkRequest();
return TeaModel.build(map, self);
}
public GetMultiDimTableSheetShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public GetMultiDimTableSheetShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public GetMultiDimTableSheetShrinkRequest 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/GetMultipartFileUploadInfosHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetMultipartFileUploadInfosHeadersAccountContext accountContext;
public static GetMultipartFileUploadInfosHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosHeaders self = new GetMultipartFileUploadInfosHeaders();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultipartFileUploadInfosHeaders setAccountContext(GetMultipartFileUploadInfosHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetMultipartFileUploadInfosHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetMultipartFileUploadInfosHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetMultipartFileUploadInfosHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosHeadersAccountContext self = new GetMultipartFileUploadInfosHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosHeadersAccountContext 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/GetMultipartFileUploadInfosRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosRequest extends TeaModel {
@NameInMap("Option")
public GetMultipartFileUploadInfosRequestOption option;
@NameInMap("PartNumbers")
public java.util.List<Integer> partNumbers;
@NameInMap("TenantContext")
public GetMultipartFileUploadInfosRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>hwHPAAAAAipHxxxxx</p>
*/
@NameInMap("UploadKey")
public String uploadKey;
public static GetMultipartFileUploadInfosRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosRequest self = new GetMultipartFileUploadInfosRequest();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosRequest setOption(GetMultipartFileUploadInfosRequestOption option) {
this.option = option;
return this;
}
public GetMultipartFileUploadInfosRequestOption getOption() {
return this.option;
}
public GetMultipartFileUploadInfosRequest setPartNumbers(java.util.List<Integer> partNumbers) {
this.partNumbers = partNumbers;
return this;
}
public java.util.List<Integer> getPartNumbers() {
return this.partNumbers;
}
public GetMultipartFileUploadInfosRequest setTenantContext(GetMultipartFileUploadInfosRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetMultipartFileUploadInfosRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetMultipartFileUploadInfosRequest setUploadKey(String uploadKey) {
this.uploadKey = uploadKey;
return this;
}
public String getUploadKey() {
return this.uploadKey;
}
public static class GetMultipartFileUploadInfosRequestOption extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("PreferIntranet")
public Boolean preferIntranet;
public static GetMultipartFileUploadInfosRequestOption build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosRequestOption self = new GetMultipartFileUploadInfosRequestOption();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosRequestOption setPreferIntranet(Boolean preferIntranet) {
this.preferIntranet = preferIntranet;
return this;
}
public Boolean getPreferIntranet() {
return this.preferIntranet;
}
}
public static class GetMultipartFileUploadInfosRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetMultipartFileUploadInfosRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosRequestTenantContext self = new GetMultipartFileUploadInfosRequestTenantContext();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosRequestTenantContext 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/GetMultipartFileUploadInfosResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetMultipartFileUploadInfosResponseBody body;
public static GetMultipartFileUploadInfosResponse build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosResponse self = new GetMultipartFileUploadInfosResponse();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultipartFileUploadInfosResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetMultipartFileUploadInfosResponse setBody(GetMultipartFileUploadInfosResponseBody body) {
this.body = body;
return this;
}
public GetMultipartFileUploadInfosResponseBody 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/GetMultipartFileUploadInfosResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosResponseBody extends TeaModel {
@NameInMap("multipartHeaderSignatureInfos")
public java.util.List<GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos> multipartHeaderSignatureInfos;
/**
* <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;
public static GetMultipartFileUploadInfosResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosResponseBody self = new GetMultipartFileUploadInfosResponseBody();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosResponseBody setMultipartHeaderSignatureInfos(java.util.List<GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos> multipartHeaderSignatureInfos) {
this.multipartHeaderSignatureInfos = multipartHeaderSignatureInfos;
return this;
}
public java.util.List<GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos> getMultipartHeaderSignatureInfos() {
return this.multipartHeaderSignatureInfos;
}
public GetMultipartFileUploadInfosResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetMultipartFileUploadInfosResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetMultipartFileUploadInfosResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>900</p>
*/
@NameInMap("ExpirationSeconds")
public Integer expirationSeconds;
@NameInMap("Headers")
public java.util.Map<String, String> headers;
@NameInMap("InternalResourceUrls")
public java.util.List<String> internalResourceUrls;
/**
* <strong>example:</strong>
* <p>ZHANGJIAKOU</p>
*/
@NameInMap("Region")
public String region;
@NameInMap("ResourceUrls")
public java.util.List<String> resourceUrls;
public static GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo self = new GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo setExpirationSeconds(Integer expirationSeconds) {
this.expirationSeconds = expirationSeconds;
return this;
}
public Integer getExpirationSeconds() {
return this.expirationSeconds;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo setInternalResourceUrls(java.util.List<String> internalResourceUrls) {
this.internalResourceUrls = internalResourceUrls;
return this;
}
public java.util.List<String> getInternalResourceUrls() {
return this.internalResourceUrls;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo setResourceUrls(java.util.List<String> resourceUrls) {
this.resourceUrls = resourceUrls;
return this;
}
public java.util.List<String> getResourceUrls() {
return this.resourceUrls;
}
}
public static class GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos extends TeaModel {
@NameInMap("HeaderSignatureInfo")
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo headerSignatureInfo;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PartNumber")
public Integer partNumber;
public static GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos self = new GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos setHeaderSignatureInfo(GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo headerSignatureInfo) {
this.headerSignatureInfo = headerSignatureInfo;
return this;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfosHeaderSignatureInfo getHeaderSignatureInfo() {
return this.headerSignatureInfo;
}
public GetMultipartFileUploadInfosResponseBodyMultipartHeaderSignatureInfos setPartNumber(Integer partNumber) {
this.partNumber = partNumber;
return this;
}
public Integer getPartNumber() {
return this.partNumber;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetMultipartFileUploadInfosShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetMultipartFileUploadInfosShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosShrinkHeaders self = new GetMultipartFileUploadInfosShrinkHeaders();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetMultipartFileUploadInfosShrinkHeaders 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/GetMultipartFileUploadInfosShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetMultipartFileUploadInfosShrinkRequest extends TeaModel {
@NameInMap("Option")
public String optionShrink;
@NameInMap("PartNumbers")
public String partNumbersShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>hwHPAAAAAipHxxxxx</p>
*/
@NameInMap("UploadKey")
public String uploadKey;
public static GetMultipartFileUploadInfosShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetMultipartFileUploadInfosShrinkRequest self = new GetMultipartFileUploadInfosShrinkRequest();
return TeaModel.build(map, self);
}
public GetMultipartFileUploadInfosShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public GetMultipartFileUploadInfosShrinkRequest setPartNumbersShrink(String partNumbersShrink) {
this.partNumbersShrink = partNumbersShrink;
return this;
}
public String getPartNumbersShrink() {
return this.partNumbersShrink;
}
public GetMultipartFileUploadInfosShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetMultipartFileUploadInfosShrinkRequest setUploadKey(String uploadKey) {
this.uploadKey = uploadKey;
return this;
}
public String getUploadKey() {
return this.uploadKey;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNewestInnerGroupsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetNewestInnerGroupsHeadersAccountContext accountContext;
public static GetNewestInnerGroupsHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsHeaders self = new GetNewestInnerGroupsHeaders();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNewestInnerGroupsHeaders setAccountContext(GetNewestInnerGroupsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetNewestInnerGroupsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetNewestInnerGroupsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetNewestInnerGroupsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsHeadersAccountContext self = new GetNewestInnerGroupsHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsHeadersAccountContext 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/GetNewestInnerGroupsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Request")
public java.util.Map<String, ?> request;
public static GetNewestInnerGroupsRequest build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsRequest self = new GetNewestInnerGroupsRequest();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsRequest setRequest(java.util.Map<String, ?> request) {
this.request = request;
return this;
}
public java.util.Map<String, ?> getRequest() {
return this.request;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNewestInnerGroupsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetNewestInnerGroupsResponseBody body;
public static GetNewestInnerGroupsResponse build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsResponse self = new GetNewestInnerGroupsResponse();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetNewestInnerGroupsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetNewestInnerGroupsResponse setBody(GetNewestInnerGroupsResponseBody body) {
this.body = body;
return this;
}
public GetNewestInnerGroupsResponseBody 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/GetNewestInnerGroupsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsResponseBody extends TeaModel {
@NameInMap("groupInfos")
public java.util.List<GetNewestInnerGroupsResponseBodyGroupInfos> groupInfos;
/**
* <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;
public static GetNewestInnerGroupsResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsResponseBody self = new GetNewestInnerGroupsResponseBody();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsResponseBody setGroupInfos(java.util.List<GetNewestInnerGroupsResponseBodyGroupInfos> groupInfos) {
this.groupInfos = groupInfos;
return this;
}
public java.util.List<GetNewestInnerGroupsResponseBodyGroupInfos> getGroupInfos() {
return this.groupInfos;
}
public GetNewestInnerGroupsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetNewestInnerGroupsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetNewestInnerGroupsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetNewestInnerGroupsResponseBodyGroupInfos extends TeaModel {
/**
* <strong>example:</strong>
* <p>@lADOADma*****QKA</p>
*/
@NameInMap("Icon")
public String icon;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("MemberAmount")
public String memberAmount;
/**
* <strong>example:</strong>
* <p>cid1e******==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("Title")
public String title;
public static GetNewestInnerGroupsResponseBodyGroupInfos build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsResponseBodyGroupInfos self = new GetNewestInnerGroupsResponseBodyGroupInfos();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsResponseBodyGroupInfos setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public GetNewestInnerGroupsResponseBodyGroupInfos setMemberAmount(String memberAmount) {
this.memberAmount = memberAmount;
return this;
}
public String getMemberAmount() {
return this.memberAmount;
}
public GetNewestInnerGroupsResponseBodyGroupInfos setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetNewestInnerGroupsResponseBodyGroupInfos setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNewestInnerGroupsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetNewestInnerGroupsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsShrinkHeaders self = new GetNewestInnerGroupsShrinkHeaders();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNewestInnerGroupsShrinkHeaders 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/GetNewestInnerGroupsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNewestInnerGroupsShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Request")
public String requestShrink;
public static GetNewestInnerGroupsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetNewestInnerGroupsShrinkRequest self = new GetNewestInnerGroupsShrinkRequest();
return TeaModel.build(map, self);
}
public GetNewestInnerGroupsShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNodeByUrlHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetNodeByUrlHeadersAccountContext accountContext;
public static GetNodeByUrlHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlHeaders self = new GetNodeByUrlHeaders();
return TeaModel.build(map, self);
}
public GetNodeByUrlHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodeByUrlHeaders setAccountContext(GetNodeByUrlHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetNodeByUrlHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetNodeByUrlHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetNodeByUrlHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlHeadersAccountContext self = new GetNodeByUrlHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetNodeByUrlHeadersAccountContext 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/GetNodeByUrlRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlRequest extends TeaModel {
@NameInMap("Option")
public GetNodeByUrlRequestOption option;
@NameInMap("TenantContext")
public GetNodeByUrlRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p><a href="https://alidocs.dingtalk.com/i/nodes/EpGBa2L*********gN7R35y">https://alidocs.dingtalk.com/i/nodes/EpGBa2L*********gN7R35y</a></p>
*/
@NameInMap("Url")
public String url;
public static GetNodeByUrlRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlRequest self = new GetNodeByUrlRequest();
return TeaModel.build(map, self);
}
public GetNodeByUrlRequest setOption(GetNodeByUrlRequestOption option) {
this.option = option;
return this;
}
public GetNodeByUrlRequestOption getOption() {
return this.option;
}
public GetNodeByUrlRequest setTenantContext(GetNodeByUrlRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetNodeByUrlRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetNodeByUrlRequest setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public static class GetNodeByUrlRequestOption extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithStatisticalInfo")
public Boolean withStatisticalInfo;
public static GetNodeByUrlRequestOption build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlRequestOption self = new GetNodeByUrlRequestOption();
return TeaModel.build(map, self);
}
public GetNodeByUrlRequestOption setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public GetNodeByUrlRequestOption setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
}
public static class GetNodeByUrlRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetNodeByUrlRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlRequestTenantContext self = new GetNodeByUrlRequestTenantContext();
return TeaModel.build(map, self);
}
public GetNodeByUrlRequestTenantContext 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/GetNodeByUrlResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetNodeByUrlResponseBody body;
public static GetNodeByUrlResponse build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlResponse self = new GetNodeByUrlResponse();
return TeaModel.build(map, self);
}
public GetNodeByUrlResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetNodeByUrlResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetNodeByUrlResponse setBody(GetNodeByUrlResponseBody body) {
this.body = body;
return this;
}
public GetNodeByUrlResponseBody 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/GetNodeByUrlResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlResponseBody extends TeaModel {
@NameInMap("node")
public GetNodeByUrlResponseBodyNode node;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static GetNodeByUrlResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlResponseBody self = new GetNodeByUrlResponseBody();
return TeaModel.build(map, self);
}
public GetNodeByUrlResponseBody setNode(GetNodeByUrlResponseBodyNode node) {
this.node = node;
return this;
}
public GetNodeByUrlResponseBodyNode getNode() {
return this.node;
}
public GetNodeByUrlResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetNodeByUrlResponseBodyNodeStatisticalInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WordCount")
public Long wordCount;
public static GetNodeByUrlResponseBodyNodeStatisticalInfo build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlResponseBodyNodeStatisticalInfo self = new GetNodeByUrlResponseBodyNodeStatisticalInfo();
return TeaModel.build(map, self);
}
public GetNodeByUrlResponseBodyNodeStatisticalInfo setWordCount(Long wordCount) {
this.wordCount = wordCount;
return this;
}
public Long getWordCount() {
return this.wordCount;
}
}
public static class GetNodeByUrlResponseBodyNode extends TeaModel {
/**
* <strong>example:</strong>
* <p>ALIDOC</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>adoc</p>
*/
@NameInMap("Extension")
public String extension;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("HasChildren")
public Boolean hasChildren;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>node_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>EpGBa2Lm8aRmzkkNhplMx1prWgN7R35y</p>
*/
@NameInMap("NodeId")
public String nodeId;
/**
* <strong>example:</strong>
* <p>READER</p>
*/
@NameInMap("PermissionRole")
public String permissionRole;
/**
* <strong>example:</strong>
* <p>512</p>
*/
@NameInMap("Size")
public Long size;
@NameInMap("StatisticalInfo")
public GetNodeByUrlResponseBodyNodeStatisticalInfo statisticalInfo;
/**
* <strong>example:</strong>
* <p>FILE</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>node_url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>By8jQS1ZYjGn5b0M</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static GetNodeByUrlResponseBodyNode build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlResponseBodyNode self = new GetNodeByUrlResponseBodyNode();
return TeaModel.build(map, self);
}
public GetNodeByUrlResponseBodyNode setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public GetNodeByUrlResponseBodyNode setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetNodeByUrlResponseBodyNode setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetNodeByUrlResponseBodyNode setExtension(String extension) {
this.extension = extension;
return this;
}
public String getExtension() {
return this.extension;
}
public GetNodeByUrlResponseBodyNode setHasChildren(Boolean hasChildren) {
this.hasChildren = hasChildren;
return this;
}
public Boolean getHasChildren() {
return this.hasChildren;
}
public GetNodeByUrlResponseBodyNode setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetNodeByUrlResponseBodyNode setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetNodeByUrlResponseBodyNode setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetNodeByUrlResponseBodyNode setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public GetNodeByUrlResponseBodyNode setPermissionRole(String permissionRole) {
this.permissionRole = permissionRole;
return this;
}
public String getPermissionRole() {
return this.permissionRole;
}
public GetNodeByUrlResponseBodyNode setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public GetNodeByUrlResponseBodyNode setStatisticalInfo(GetNodeByUrlResponseBodyNodeStatisticalInfo statisticalInfo) {
this.statisticalInfo = statisticalInfo;
return this;
}
public GetNodeByUrlResponseBodyNodeStatisticalInfo getStatisticalInfo() {
return this.statisticalInfo;
}
public GetNodeByUrlResponseBodyNode setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetNodeByUrlResponseBodyNode setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public GetNodeByUrlResponseBodyNode 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/GetNodeByUrlShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetNodeByUrlShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlShrinkHeaders self = new GetNodeByUrlShrinkHeaders();
return TeaModel.build(map, self);
}
public GetNodeByUrlShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodeByUrlShrinkHeaders 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/GetNodeByUrlShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeByUrlShrinkRequest extends TeaModel {
@NameInMap("Option")
public String optionShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p><a href="https://alidocs.dingtalk.com/i/nodes/EpGBa2L*********gN7R35y">https://alidocs.dingtalk.com/i/nodes/EpGBa2L*********gN7R35y</a></p>
*/
@NameInMap("Url")
public String url;
public static GetNodeByUrlShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodeByUrlShrinkRequest self = new GetNodeByUrlShrinkRequest();
return TeaModel.build(map, self);
}
public GetNodeByUrlShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public GetNodeByUrlShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetNodeByUrlShrinkRequest 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/GetNodeHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetNodeHeadersAccountContext accountContext;
public static GetNodeHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodeHeaders self = new GetNodeHeaders();
return TeaModel.build(map, self);
}
public GetNodeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodeHeaders setAccountContext(GetNodeHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetNodeHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetNodeHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetNodeHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetNodeHeadersAccountContext self = new GetNodeHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetNodeHeadersAccountContext 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/GetNodeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a9E05BDRVQ9K600yf1NplNDxV63zgkYA</p>
*/
@NameInMap("NodeId")
public String nodeId;
@NameInMap("TenantContext")
public GetNodeRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithStatisticalInfo")
public Boolean withStatisticalInfo;
public static GetNodeRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodeRequest self = new GetNodeRequest();
return TeaModel.build(map, self);
}
public GetNodeRequest setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public GetNodeRequest setTenantContext(GetNodeRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetNodeRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetNodeRequest setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public GetNodeRequest setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
public static class GetNodeRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetNodeRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetNodeRequestTenantContext self = new GetNodeRequestTenantContext();
return TeaModel.build(map, self);
}
public GetNodeRequestTenantContext 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/GetNodeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetNodeResponseBody body;
public static GetNodeResponse build(java.util.Map<String, ?> map) throws Exception {
GetNodeResponse self = new GetNodeResponse();
return TeaModel.build(map, self);
}
public GetNodeResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetNodeResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetNodeResponse setBody(GetNodeResponseBody body) {
this.body = body;
return this;
}
public GetNodeResponseBody 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/GetNodeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeResponseBody extends TeaModel {
@NameInMap("node")
public GetNodeResponseBodyNode node;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static GetNodeResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetNodeResponseBody self = new GetNodeResponseBody();
return TeaModel.build(map, self);
}
public GetNodeResponseBody setNode(GetNodeResponseBodyNode node) {
this.node = node;
return this;
}
public GetNodeResponseBodyNode getNode() {
return this.node;
}
public GetNodeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetNodeResponseBodyNodeStatisticalInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("WordCount")
public Long wordCount;
public static GetNodeResponseBodyNodeStatisticalInfo build(java.util.Map<String, ?> map) throws Exception {
GetNodeResponseBodyNodeStatisticalInfo self = new GetNodeResponseBodyNodeStatisticalInfo();
return TeaModel.build(map, self);
}
public GetNodeResponseBodyNodeStatisticalInfo setWordCount(Long wordCount) {
this.wordCount = wordCount;
return this;
}
public Long getWordCount() {
return this.wordCount;
}
}
public static class GetNodeResponseBodyNode extends TeaModel {
/**
* <strong>example:</strong>
* <p>ALIDOC</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>adoc</p>
*/
@NameInMap("Extension")
public String extension;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("HasChildren")
public Boolean hasChildren;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>node_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("NodeId")
public String nodeId;
/**
* <strong>example:</strong>
* <p>READER</p>
*/
@NameInMap("PermissionRole")
public String permissionRole;
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("Size")
public Long size;
@NameInMap("StatisticalInfo")
public GetNodeResponseBodyNodeStatisticalInfo statisticalInfo;
/**
* <strong>example:</strong>
* <p>FILE</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>node_url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>By8jQS1ZYjGn5b0M</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static GetNodeResponseBodyNode build(java.util.Map<String, ?> map) throws Exception {
GetNodeResponseBodyNode self = new GetNodeResponseBodyNode();
return TeaModel.build(map, self);
}
public GetNodeResponseBodyNode setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public GetNodeResponseBodyNode setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetNodeResponseBodyNode setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetNodeResponseBodyNode setExtension(String extension) {
this.extension = extension;
return this;
}
public String getExtension() {
return this.extension;
}
public GetNodeResponseBodyNode setHasChildren(Boolean hasChildren) {
this.hasChildren = hasChildren;
return this;
}
public Boolean getHasChildren() {
return this.hasChildren;
}
public GetNodeResponseBodyNode setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetNodeResponseBodyNode setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetNodeResponseBodyNode setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetNodeResponseBodyNode setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public GetNodeResponseBodyNode setPermissionRole(String permissionRole) {
this.permissionRole = permissionRole;
return this;
}
public String getPermissionRole() {
return this.permissionRole;
}
public GetNodeResponseBodyNode setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public GetNodeResponseBodyNode setStatisticalInfo(GetNodeResponseBodyNodeStatisticalInfo statisticalInfo) {
this.statisticalInfo = statisticalInfo;
return this;
}
public GetNodeResponseBodyNodeStatisticalInfo getStatisticalInfo() {
return this.statisticalInfo;
}
public GetNodeResponseBodyNode setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetNodeResponseBodyNode setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public GetNodeResponseBodyNode 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/GetNodeShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetNodeShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodeShrinkHeaders self = new GetNodeShrinkHeaders();
return TeaModel.build(map, self);
}
public GetNodeShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodeShrinkHeaders 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/GetNodeShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodeShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a9E05BDRVQ9K600yf1NplNDxV63zgkYA</p>
*/
@NameInMap("NodeId")
public String nodeId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithStatisticalInfo")
public Boolean withStatisticalInfo;
public static GetNodeShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodeShrinkRequest self = new GetNodeShrinkRequest();
return TeaModel.build(map, self);
}
public GetNodeShrinkRequest setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public GetNodeShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetNodeShrinkRequest setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public GetNodeShrinkRequest setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNodesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetNodesHeadersAccountContext accountContext;
public static GetNodesHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodesHeaders self = new GetNodesHeaders();
return TeaModel.build(map, self);
}
public GetNodesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodesHeaders setAccountContext(GetNodesHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetNodesHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetNodesHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetNodesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetNodesHeadersAccountContext self = new GetNodesHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetNodesHeadersAccountContext 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/GetNodesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("NodeIds")
public java.util.List<String> nodeIds;
@NameInMap("Option")
public GetNodesRequestOption option;
@NameInMap("TenantContext")
public GetNodesRequestTenantContext tenantContext;
public static GetNodesRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodesRequest self = new GetNodesRequest();
return TeaModel.build(map, self);
}
public GetNodesRequest setNodeIds(java.util.List<String> nodeIds) {
this.nodeIds = nodeIds;
return this;
}
public java.util.List<String> getNodeIds() {
return this.nodeIds;
}
public GetNodesRequest setOption(GetNodesRequestOption option) {
this.option = option;
return this;
}
public GetNodesRequestOption getOption() {
return this.option;
}
public GetNodesRequest setTenantContext(GetNodesRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetNodesRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetNodesRequestOption extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithStatisticalInfo")
public Boolean withStatisticalInfo;
public static GetNodesRequestOption build(java.util.Map<String, ?> map) throws Exception {
GetNodesRequestOption self = new GetNodesRequestOption();
return TeaModel.build(map, self);
}
public GetNodesRequestOption setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public GetNodesRequestOption setWithStatisticalInfo(Boolean withStatisticalInfo) {
this.withStatisticalInfo = withStatisticalInfo;
return this;
}
public Boolean getWithStatisticalInfo() {
return this.withStatisticalInfo;
}
}
public static class GetNodesRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetNodesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetNodesRequestTenantContext self = new GetNodesRequestTenantContext();
return TeaModel.build(map, self);
}
public GetNodesRequestTenantContext 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/GetNodesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetNodesResponseBody body;
public static GetNodesResponse build(java.util.Map<String, ?> map) throws Exception {
GetNodesResponse self = new GetNodesResponse();
return TeaModel.build(map, self);
}
public GetNodesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetNodesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetNodesResponse setBody(GetNodesResponseBody body) {
this.body = body;
return this;
}
public GetNodesResponseBody 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/GetNodesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesResponseBody extends TeaModel {
@NameInMap("nodes")
public java.util.List<GetNodesResponseBodyNodes> nodes;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static GetNodesResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetNodesResponseBody self = new GetNodesResponseBody();
return TeaModel.build(map, self);
}
public GetNodesResponseBody setNodes(java.util.List<GetNodesResponseBodyNodes> nodes) {
this.nodes = nodes;
return this;
}
public java.util.List<GetNodesResponseBodyNodes> getNodes() {
return this.nodes;
}
public GetNodesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetNodesResponseBodyNodesStatisticalInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WordCount")
public Long wordCount;
public static GetNodesResponseBodyNodesStatisticalInfo build(java.util.Map<String, ?> map) throws Exception {
GetNodesResponseBodyNodesStatisticalInfo self = new GetNodesResponseBodyNodesStatisticalInfo();
return TeaModel.build(map, self);
}
public GetNodesResponseBodyNodesStatisticalInfo setWordCount(Long wordCount) {
this.wordCount = wordCount;
return this;
}
public Long getWordCount() {
return this.wordCount;
}
}
public static class GetNodesResponseBodyNodes extends TeaModel {
/**
* <strong>example:</strong>
* <p>ALIDOC</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>adoc</p>
*/
@NameInMap("Extension")
public String extension;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("HasChildren")
public Boolean hasChildren;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>node_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("NodeId")
public String nodeId;
/**
* <strong>example:</strong>
* <p>READER</p>
*/
@NameInMap("PermissionRole")
public String permissionRole;
/**
* <strong>example:</strong>
* <p>512</p>
*/
@NameInMap("Size")
public Long size;
@NameInMap("StatisticalInfo")
public GetNodesResponseBodyNodesStatisticalInfo statisticalInfo;
/**
* <strong>example:</strong>
* <p>FILE</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>node_url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static GetNodesResponseBodyNodes build(java.util.Map<String, ?> map) throws Exception {
GetNodesResponseBodyNodes self = new GetNodesResponseBodyNodes();
return TeaModel.build(map, self);
}
public GetNodesResponseBodyNodes setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public GetNodesResponseBodyNodes setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetNodesResponseBodyNodes setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public GetNodesResponseBodyNodes setExtension(String extension) {
this.extension = extension;
return this;
}
public String getExtension() {
return this.extension;
}
public GetNodesResponseBodyNodes setHasChildren(Boolean hasChildren) {
this.hasChildren = hasChildren;
return this;
}
public Boolean getHasChildren() {
return this.hasChildren;
}
public GetNodesResponseBodyNodes setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetNodesResponseBodyNodes setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public GetNodesResponseBodyNodes setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetNodesResponseBodyNodes setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public GetNodesResponseBodyNodes setPermissionRole(String permissionRole) {
this.permissionRole = permissionRole;
return this;
}
public String getPermissionRole() {
return this.permissionRole;
}
public GetNodesResponseBodyNodes setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public GetNodesResponseBodyNodes setStatisticalInfo(GetNodesResponseBodyNodesStatisticalInfo statisticalInfo) {
this.statisticalInfo = statisticalInfo;
return this;
}
public GetNodesResponseBodyNodesStatisticalInfo getStatisticalInfo() {
return this.statisticalInfo;
}
public GetNodesResponseBodyNodes setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetNodesResponseBodyNodes setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public GetNodesResponseBodyNodes 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/GetNodesShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetNodesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNodesShrinkHeaders self = new GetNodesShrinkHeaders();
return TeaModel.build(map, self);
}
public GetNodesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNodesShrinkHeaders 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/GetNodesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNodesShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("NodeIds")
public String nodeIdsShrink;
@NameInMap("Option")
public String optionShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetNodesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetNodesShrinkRequest self = new GetNodesShrinkRequest();
return TeaModel.build(map, self);
}
public GetNodesShrinkRequest setNodeIdsShrink(String nodeIdsShrink) {
this.nodeIdsShrink = nodeIdsShrink;
return this;
}
public String getNodeIdsShrink() {
return this.nodeIdsShrink;
}
public GetNodesShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public GetNodesShrinkRequest 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/GetNotifyMeHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNotifyMeHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetNotifyMeHeadersAccountContext accountContext;
public static GetNotifyMeHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeHeaders self = new GetNotifyMeHeaders();
return TeaModel.build(map, self);
}
public GetNotifyMeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNotifyMeHeaders setAccountContext(GetNotifyMeHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetNotifyMeHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetNotifyMeHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetNotifyMeHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeHeadersAccountContext self = new GetNotifyMeHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetNotifyMeHeadersAccountContext 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/GetNotifyMeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNotifyMeRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBKTxxx</p>
*/
@NameInMap("AppTypes")
public String appTypes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>corpIdxxx</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <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>2021-05-01</p>
*/
@NameInMap("InstanceCreateFromTimeGMT")
public Long instanceCreateFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("InstanceCreateToTimeGMT")
public Long instanceCreateToTimeGMT;
/**
* <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>["xx","xxx"]</p>
*/
@NameInMap("ProcessCodes")
public String processCodes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("Token")
public String token;
public static GetNotifyMeRequest build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeRequest self = new GetNotifyMeRequest();
return TeaModel.build(map, self);
}
public GetNotifyMeRequest setAppTypes(String appTypes) {
this.appTypes = appTypes;
return this;
}
public String getAppTypes() {
return this.appTypes;
}
public GetNotifyMeRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetNotifyMeRequest setCreateFromTimeGMT(Long createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public Long getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetNotifyMeRequest setCreateToTimeGMT(Long createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public Long getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetNotifyMeRequest setInstanceCreateFromTimeGMT(Long instanceCreateFromTimeGMT) {
this.instanceCreateFromTimeGMT = instanceCreateFromTimeGMT;
return this;
}
public Long getInstanceCreateFromTimeGMT() {
return this.instanceCreateFromTimeGMT;
}
public GetNotifyMeRequest setInstanceCreateToTimeGMT(Long instanceCreateToTimeGMT) {
this.instanceCreateToTimeGMT = instanceCreateToTimeGMT;
return this;
}
public Long getInstanceCreateToTimeGMT() {
return this.instanceCreateToTimeGMT;
}
public GetNotifyMeRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public GetNotifyMeRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetNotifyMeRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetNotifyMeRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetNotifyMeRequest setProcessCodes(String processCodes) {
this.processCodes = processCodes;
return this;
}
public String getProcessCodes() {
return this.processCodes;
}
public GetNotifyMeRequest setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNotifyMeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNotifyMeResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetNotifyMeResponseBody body;
public static GetNotifyMeResponse build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeResponse self = new GetNotifyMeResponse();
return TeaModel.build(map, self);
}
public GetNotifyMeResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetNotifyMeResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetNotifyMeResponse setBody(GetNotifyMeResponseBody body) {
this.body = body;
return this;
}
public GetNotifyMeResponseBody 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/GetNotifyMeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNotifyMeResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[{}]</p>
*/
@NameInMap("data")
public java.util.List<GetNotifyMeResponseBodyData> 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 GetNotifyMeResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeResponseBody self = new GetNotifyMeResponseBody();
return TeaModel.build(map, self);
}
public GetNotifyMeResponseBody setData(java.util.List<GetNotifyMeResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetNotifyMeResponseBodyData> getData() {
return this.data;
}
public GetNotifyMeResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetNotifyMeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetNotifyMeResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetNotifyMeResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetNotifyMeResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetNotifyMeResponseBodyData extends TeaModel {
/**
* <strong>example:</strong>
* <p>act-xxaanfaf</p>
*/
@NameInMap("ActivityId")
public String activityId;
/**
* <strong>example:</strong>
* <p>APP_XCxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>corpIdxxx</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("CreateTimeGMT")
public String createTimeGMT;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("CreatorUserId")
public String creatorUserId;
/**
* <strong>example:</strong>
* <p>formxxxx</p>
*/
@NameInMap("FormInstanceId")
public String formInstanceId;
/**
* <strong>example:</strong>
* <p>RUNNING</p>
*/
@NameInMap("InstStatus")
public String instStatus;
/**
* <strong>example:</strong>
* <p>mobileUrlexample</p>
*/
@NameInMap("MobileUrl")
public String mobileUrl;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("ModifiedTimeGMT")
public String modifiedTimeGMT;
public static GetNotifyMeResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeResponseBodyData self = new GetNotifyMeResponseBodyData();
return TeaModel.build(map, self);
}
public GetNotifyMeResponseBodyData setActivityId(String activityId) {
this.activityId = activityId;
return this;
}
public String getActivityId() {
return this.activityId;
}
public GetNotifyMeResponseBodyData setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetNotifyMeResponseBodyData setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetNotifyMeResponseBodyData setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetNotifyMeResponseBodyData setCreatorUserId(String creatorUserId) {
this.creatorUserId = creatorUserId;
return this;
}
public String getCreatorUserId() {
return this.creatorUserId;
}
public GetNotifyMeResponseBodyData setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
public GetNotifyMeResponseBodyData setInstStatus(String instStatus) {
this.instStatus = instStatus;
return this;
}
public String getInstStatus() {
return this.instStatus;
}
public GetNotifyMeResponseBodyData setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public GetNotifyMeResponseBodyData setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetNotifyMeShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetNotifyMeShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetNotifyMeShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetNotifyMeShrinkHeaders self = new GetNotifyMeShrinkHeaders();
return TeaModel.build(map, self);
}
public GetNotifyMeShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetNotifyMeShrinkHeaders setAccountContextShrink(String accountContextShrink) {
this.accountContextShrink = accountContextShrink;
return this;
}
public String getAccountContextShrink() {
return this.accountContextShrink;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.