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/DeleteMultiDimTableRecordsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteMultiDimTableRecordsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsShrinkHeaders self = new DeleteMultiDimTableRecordsShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMultiDimTableRecordsShrinkHeaders 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/DeleteMultiDimTableRecordsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>r1R7q3QmWew5lo02fxB7nxxxxxxxx</p>
*/
@NameInMap("BaseId")
public String baseId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("RecordIds")
public String recordIdsShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteMultiDimTableRecordsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsShrinkRequest self = new DeleteMultiDimTableRecordsShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public DeleteMultiDimTableRecordsShrinkRequest setRecordIdsShrink(String recordIdsShrink) {
this.recordIdsShrink = recordIdsShrink;
return this;
}
public String getRecordIdsShrink() {
return this.recordIdsShrink;
}
public DeleteMultiDimTableRecordsShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public DeleteMultiDimTableRecordsShrinkRequest 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/DeletePermissionHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeletePermissionHeadersAccountContext accountContext;
public static DeletePermissionHeaders build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionHeaders self = new DeletePermissionHeaders();
return TeaModel.build(map, self);
}
public DeletePermissionHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeletePermissionHeaders setAccountContext(DeletePermissionHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeletePermissionHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeletePermissionHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeletePermissionHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionHeadersAccountContext self = new DeletePermissionHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeletePermissionHeadersAccountContext 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/DeletePermissionRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a9E05BDRVQRkezKGCE3nlwPDJ63zgkYA</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public java.util.List<DeletePermissionRequestMembers> members;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MANAGER</p>
*/
@NameInMap("RoleId")
public String roleId;
@NameInMap("TenantContext")
public DeletePermissionRequestTenantContext tenantContext;
public static DeletePermissionRequest build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionRequest self = new DeletePermissionRequest();
return TeaModel.build(map, self);
}
public DeletePermissionRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public DeletePermissionRequest setMembers(java.util.List<DeletePermissionRequestMembers> members) {
this.members = members;
return this;
}
public java.util.List<DeletePermissionRequestMembers> getMembers() {
return this.members;
}
public DeletePermissionRequest setRoleId(String roleId) {
this.roleId = roleId;
return this;
}
public String getRoleId() {
return this.roleId;
}
public DeletePermissionRequest setTenantContext(DeletePermissionRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeletePermissionRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeletePermissionRequestMembers extends TeaModel {
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>ORG</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>ORG</p>
*/
@NameInMap("Type")
public String type;
public static DeletePermissionRequestMembers build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionRequestMembers self = new DeletePermissionRequestMembers();
return TeaModel.build(map, self);
}
public DeletePermissionRequestMembers setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public DeletePermissionRequestMembers setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public DeletePermissionRequestMembers setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class DeletePermissionRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeletePermissionRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionRequestTenantContext self = new DeletePermissionRequestTenantContext();
return TeaModel.build(map, self);
}
public DeletePermissionRequestTenantContext 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/DeletePermissionResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeletePermissionResponseBody body;
public static DeletePermissionResponse build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionResponse self = new DeletePermissionResponse();
return TeaModel.build(map, self);
}
public DeletePermissionResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeletePermissionResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeletePermissionResponse setBody(DeletePermissionResponseBody body) {
this.body = body;
return this;
}
public DeletePermissionResponseBody 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/DeletePermissionResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
/**
* <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 DeletePermissionResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionResponseBody self = new DeletePermissionResponseBody();
return TeaModel.build(map, self);
}
public DeletePermissionResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeletePermissionResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DeletePermissionResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeletePermissionResponseBody 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/DeletePermissionShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeletePermissionShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionShrinkHeaders self = new DeletePermissionShrinkHeaders();
return TeaModel.build(map, self);
}
public DeletePermissionShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeletePermissionShrinkHeaders 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/DeletePermissionShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeletePermissionShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a9E05BDRVQRkezKGCE3nlwPDJ63zgkYA</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public String membersShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MANAGER</p>
*/
@NameInMap("RoleId")
public String roleId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeletePermissionShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeletePermissionShrinkRequest self = new DeletePermissionShrinkRequest();
return TeaModel.build(map, self);
}
public DeletePermissionShrinkRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public DeletePermissionShrinkRequest setMembersShrink(String membersShrink) {
this.membersShrink = membersShrink;
return this;
}
public String getMembersShrink() {
return this.membersShrink;
}
public DeletePermissionShrinkRequest setRoleId(String roleId) {
this.roleId = roleId;
return this;
}
public String getRoleId() {
return this.roleId;
}
public DeletePermissionShrinkRequest 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/DeleteRowsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteRowsHeadersAccountContext accountContext;
public static DeleteRowsHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsHeaders self = new DeleteRowsHeaders();
return TeaModel.build(map, self);
}
public DeleteRowsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteRowsHeaders setAccountContext(DeleteRowsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteRowsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteRowsHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteRowsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsHeadersAccountContext self = new DeleteRowsHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteRowsHeadersAccountContext 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/DeleteRowsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Row")
public Long row;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("RowCount")
public Long rowCount;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("SheetId")
public String sheetId;
@NameInMap("TenantContext")
public DeleteRowsRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static DeleteRowsRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsRequest self = new DeleteRowsRequest();
return TeaModel.build(map, self);
}
public DeleteRowsRequest setRow(Long row) {
this.row = row;
return this;
}
public Long getRow() {
return this.row;
}
public DeleteRowsRequest setRowCount(Long rowCount) {
this.rowCount = rowCount;
return this;
}
public Long getRowCount() {
return this.rowCount;
}
public DeleteRowsRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteRowsRequest setTenantContext(DeleteRowsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteRowsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteRowsRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
public static class DeleteRowsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteRowsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsRequestTenantContext self = new DeleteRowsRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteRowsRequestTenantContext 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/DeleteRowsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteRowsResponseBody body;
public static DeleteRowsResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsResponse self = new DeleteRowsResponse();
return TeaModel.build(map, self);
}
public DeleteRowsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteRowsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteRowsResponse setBody(DeleteRowsResponseBody body) {
this.body = body;
return this;
}
public DeleteRowsResponseBody 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/DeleteRowsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("id")
public String id;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static DeleteRowsResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsResponseBody self = new DeleteRowsResponseBody();
return TeaModel.build(map, self);
}
public DeleteRowsResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public DeleteRowsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteRowsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteRowsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsShrinkHeaders self = new DeleteRowsShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteRowsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteRowsShrinkHeaders 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/DeleteRowsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteRowsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Row")
public Long row;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("RowCount")
public Long rowCount;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("SheetId")
public String sheetId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static DeleteRowsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteRowsShrinkRequest self = new DeleteRowsShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteRowsShrinkRequest setRow(Long row) {
this.row = row;
return this;
}
public Long getRow() {
return this.row;
}
public DeleteRowsShrinkRequest setRowCount(Long rowCount) {
this.rowCount = rowCount;
return this;
}
public Long getRowCount() {
return this.rowCount;
}
public DeleteRowsShrinkRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteRowsShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteRowsShrinkRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteScenegroupMemberHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteScenegroupMemberHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteScenegroupMemberHeadersAccountContext accountContext;
public static DeleteScenegroupMemberHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberHeaders self = new DeleteScenegroupMemberHeaders();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteScenegroupMemberHeaders setAccountContext(DeleteScenegroupMemberHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteScenegroupMemberHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteScenegroupMemberHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteScenegroupMemberHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberHeadersAccountContext self = new DeleteScenegroupMemberHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberHeadersAccountContext 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/DeleteScenegroupMemberRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteScenegroupMemberRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidvkLfbOyIiSYqjgvAiWwFow==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123xxx,223xxx</p>
*/
@NameInMap("UserIds")
public String userIds;
public static DeleteScenegroupMemberRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberRequest self = new DeleteScenegroupMemberRequest();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public DeleteScenegroupMemberRequest setUserIds(String userIds) {
this.userIds = userIds;
return this;
}
public String getUserIds() {
return this.userIds;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteScenegroupMemberResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteScenegroupMemberResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteScenegroupMemberResponseBody body;
public static DeleteScenegroupMemberResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberResponse self = new DeleteScenegroupMemberResponse();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteScenegroupMemberResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteScenegroupMemberResponse setBody(DeleteScenegroupMemberResponseBody body) {
this.body = body;
return this;
}
public DeleteScenegroupMemberResponseBody 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/DeleteScenegroupMemberResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteScenegroupMemberResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
public static DeleteScenegroupMemberResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberResponseBody self = new DeleteScenegroupMemberResponseBody();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteScenegroupMemberResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteScenegroupMemberShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteScenegroupMemberShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteScenegroupMemberShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteScenegroupMemberShrinkHeaders self = new DeleteScenegroupMemberShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteScenegroupMemberShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteScenegroupMemberShrinkHeaders 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/DeleteSheetHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteSheetHeadersAccountContext accountContext;
public static DeleteSheetHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetHeaders self = new DeleteSheetHeaders();
return TeaModel.build(map, self);
}
public DeleteSheetHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteSheetHeaders setAccountContext(DeleteSheetHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteSheetHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteSheetHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteSheetHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetHeadersAccountContext self = new DeleteSheetHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteSheetHeadersAccountContext 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/DeleteSheetRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("SheetId")
public String sheetId;
@NameInMap("TenantContext")
public DeleteSheetRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static DeleteSheetRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetRequest self = new DeleteSheetRequest();
return TeaModel.build(map, self);
}
public DeleteSheetRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteSheetRequest setTenantContext(DeleteSheetRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteSheetRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteSheetRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
public static class DeleteSheetRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteSheetRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetRequestTenantContext self = new DeleteSheetRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteSheetRequestTenantContext 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/DeleteSheetResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteSheetResponseBody body;
public static DeleteSheetResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetResponse self = new DeleteSheetResponse();
return TeaModel.build(map, self);
}
public DeleteSheetResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteSheetResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteSheetResponse setBody(DeleteSheetResponseBody body) {
this.body = body;
return this;
}
public DeleteSheetResponseBody 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/DeleteSheetResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
public static DeleteSheetResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetResponseBody self = new DeleteSheetResponseBody();
return TeaModel.build(map, self);
}
public DeleteSheetResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteSheetResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteSheetShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteSheetShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetShrinkHeaders self = new DeleteSheetShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteSheetShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteSheetShrinkHeaders 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/DeleteSheetShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSheetShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("SheetId")
public String sheetId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static DeleteSheetShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteSheetShrinkRequest self = new DeleteSheetShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteSheetShrinkRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteSheetShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteSheetShrinkRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteSubscribedCalendarHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSubscribedCalendarHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteSubscribedCalendarHeadersAccountContext accountContext;
public static DeleteSubscribedCalendarHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarHeaders self = new DeleteSubscribedCalendarHeaders();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteSubscribedCalendarHeaders setAccountContext(DeleteSubscribedCalendarHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteSubscribedCalendarHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteSubscribedCalendarHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteSubscribedCalendarHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarHeadersAccountContext self = new DeleteSubscribedCalendarHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarHeadersAccountContext 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/DeleteSubscribedCalendarRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSubscribedCalendarRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MzM5Mxxx</p>
*/
@NameInMap("CalendarId")
public String calendarId;
public static DeleteSubscribedCalendarRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarRequest self = new DeleteSubscribedCalendarRequest();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarRequest setCalendarId(String calendarId) {
this.calendarId = calendarId;
return this;
}
public String getCalendarId() {
return this.calendarId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteSubscribedCalendarResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSubscribedCalendarResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteSubscribedCalendarResponseBody body;
public static DeleteSubscribedCalendarResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarResponse self = new DeleteSubscribedCalendarResponse();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteSubscribedCalendarResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteSubscribedCalendarResponse setBody(DeleteSubscribedCalendarResponseBody body) {
this.body = body;
return this;
}
public DeleteSubscribedCalendarResponseBody 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/DeleteSubscribedCalendarResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSubscribedCalendarResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static DeleteSubscribedCalendarResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarResponseBody self = new DeleteSubscribedCalendarResponseBody();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public DeleteSubscribedCalendarResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteSubscribedCalendarShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteSubscribedCalendarShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteSubscribedCalendarShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteSubscribedCalendarShrinkHeaders self = new DeleteSubscribedCalendarShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteSubscribedCalendarShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteSubscribedCalendarShrinkHeaders 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/DeleteTodoTaskHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteTodoTaskHeadersAccountContext accountContext;
public static DeleteTodoTaskHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskHeaders self = new DeleteTodoTaskHeaders();
return TeaModel.build(map, self);
}
public DeleteTodoTaskHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteTodoTaskHeaders setAccountContext(DeleteTodoTaskHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteTodoTaskHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteTodoTaskHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteTodoTaskHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskHeadersAccountContext self = new DeleteTodoTaskHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteTodoTaskHeadersAccountContext 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/DeleteTodoTaskRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskRequest extends TeaModel {
@NameInMap("TenantContext")
public DeleteTodoTaskRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("operatorId")
public String operatorId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>63edc8da7e917d6ecdaab11b</p>
*/
@NameInMap("taskId")
public String taskId;
public static DeleteTodoTaskRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskRequest self = new DeleteTodoTaskRequest();
return TeaModel.build(map, self);
}
public DeleteTodoTaskRequest setTenantContext(DeleteTodoTaskRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteTodoTaskRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteTodoTaskRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public DeleteTodoTaskRequest setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
public static class DeleteTodoTaskRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteTodoTaskRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskRequestTenantContext self = new DeleteTodoTaskRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteTodoTaskRequestTenantContext 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/DeleteTodoTaskResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteTodoTaskResponseBody body;
public static DeleteTodoTaskResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskResponse self = new DeleteTodoTaskResponse();
return TeaModel.build(map, self);
}
public DeleteTodoTaskResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteTodoTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteTodoTaskResponse setBody(DeleteTodoTaskResponseBody body) {
this.body = body;
return this;
}
public DeleteTodoTaskResponseBody 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/DeleteTodoTaskResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("result")
public Boolean result;
public static DeleteTodoTaskResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskResponseBody self = new DeleteTodoTaskResponseBody();
return TeaModel.build(map, self);
}
public DeleteTodoTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteTodoTaskResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteTodoTaskShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteTodoTaskShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskShrinkHeaders self = new DeleteTodoTaskShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteTodoTaskShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteTodoTaskShrinkHeaders 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/DeleteTodoTaskShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteTodoTaskShrinkRequest extends TeaModel {
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("operatorId")
public String operatorId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>63edc8da7e917d6ecdaab11b</p>
*/
@NameInMap("taskId")
public String taskId;
public static DeleteTodoTaskShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteTodoTaskShrinkRequest self = new DeleteTodoTaskShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteTodoTaskShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteTodoTaskShrinkRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public DeleteTodoTaskShrinkRequest 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/DeleteWorkspaceDocMembersHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteWorkspaceDocMembersHeadersAccountContext accountContext;
public static DeleteWorkspaceDocMembersHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersHeaders self = new DeleteWorkspaceDocMembersHeaders();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteWorkspaceDocMembersHeaders setAccountContext(DeleteWorkspaceDocMembersHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteWorkspaceDocMembersHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteWorkspaceDocMembersHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteWorkspaceDocMembersHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersHeadersAccountContext self = new DeleteWorkspaceDocMembersHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersHeadersAccountContext 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/DeleteWorkspaceDocMembersRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public java.util.List<DeleteWorkspaceDocMembersRequestMembers> members;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>YRBGv0xxx</p>
*/
@NameInMap("NodeId")
public String nodeId;
@NameInMap("TenantContext")
public DeleteWorkspaceDocMembersRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>YRBGvyxxx</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static DeleteWorkspaceDocMembersRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersRequest self = new DeleteWorkspaceDocMembersRequest();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersRequest setMembers(java.util.List<DeleteWorkspaceDocMembersRequestMembers> members) {
this.members = members;
return this;
}
public java.util.List<DeleteWorkspaceDocMembersRequestMembers> getMembers() {
return this.members;
}
public DeleteWorkspaceDocMembersRequest setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public DeleteWorkspaceDocMembersRequest setTenantContext(DeleteWorkspaceDocMembersRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteWorkspaceDocMembersRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteWorkspaceDocMembersRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public static class DeleteWorkspaceDocMembersRequestMembers extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("MemberId")
public String memberId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>USER</p>
*/
@NameInMap("MemberType")
public String memberType;
public static DeleteWorkspaceDocMembersRequestMembers build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersRequestMembers self = new DeleteWorkspaceDocMembersRequestMembers();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersRequestMembers setMemberId(String memberId) {
this.memberId = memberId;
return this;
}
public String getMemberId() {
return this.memberId;
}
public DeleteWorkspaceDocMembersRequestMembers setMemberType(String memberType) {
this.memberType = memberType;
return this;
}
public String getMemberType() {
return this.memberType;
}
}
public static class DeleteWorkspaceDocMembersRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteWorkspaceDocMembersRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersRequestTenantContext self = new DeleteWorkspaceDocMembersRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersRequestTenantContext 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/DeleteWorkspaceDocMembersResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteWorkspaceDocMembersResponseBody body;
public static DeleteWorkspaceDocMembersResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersResponse self = new DeleteWorkspaceDocMembersResponse();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteWorkspaceDocMembersResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteWorkspaceDocMembersResponse setBody(DeleteWorkspaceDocMembersResponseBody body) {
this.body = body;
return this;
}
public DeleteWorkspaceDocMembersResponseBody 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/DeleteWorkspaceDocMembersResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static DeleteWorkspaceDocMembersResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersResponseBody self = new DeleteWorkspaceDocMembersResponseBody();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteWorkspaceDocMembersShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteWorkspaceDocMembersShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersShrinkHeaders self = new DeleteWorkspaceDocMembersShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteWorkspaceDocMembersShrinkHeaders 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/DeleteWorkspaceDocMembersShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceDocMembersShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public String membersShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>YRBGv0xxx</p>
*/
@NameInMap("NodeId")
public String nodeId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>YRBGvyxxx</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static DeleteWorkspaceDocMembersShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceDocMembersShrinkRequest self = new DeleteWorkspaceDocMembersShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteWorkspaceDocMembersShrinkRequest setMembersShrink(String membersShrink) {
this.membersShrink = membersShrink;
return this;
}
public String getMembersShrink() {
return this.membersShrink;
}
public DeleteWorkspaceDocMembersShrinkRequest setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public DeleteWorkspaceDocMembersShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteWorkspaceDocMembersShrinkRequest 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/DeleteWorkspaceMembersHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteWorkspaceMembersHeadersAccountContext accountContext;
public static DeleteWorkspaceMembersHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersHeaders self = new DeleteWorkspaceMembersHeaders();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteWorkspaceMembersHeaders setAccountContext(DeleteWorkspaceMembersHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteWorkspaceMembersHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteWorkspaceMembersHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteWorkspaceMembersHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersHeadersAccountContext self = new DeleteWorkspaceMembersHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersHeadersAccountContext 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/DeleteWorkspaceMembersRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public java.util.List<DeleteWorkspaceMembersRequestMembers> members;
@NameInMap("TenantContext")
public DeleteWorkspaceMembersRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static DeleteWorkspaceMembersRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersRequest self = new DeleteWorkspaceMembersRequest();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersRequest setMembers(java.util.List<DeleteWorkspaceMembersRequestMembers> members) {
this.members = members;
return this;
}
public java.util.List<DeleteWorkspaceMembersRequestMembers> getMembers() {
return this.members;
}
public DeleteWorkspaceMembersRequest setTenantContext(DeleteWorkspaceMembersRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteWorkspaceMembersRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteWorkspaceMembersRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public static class DeleteWorkspaceMembersRequestMembers extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("MemberId")
public String memberId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>USER</p>
*/
@NameInMap("MemberType")
public String memberType;
public static DeleteWorkspaceMembersRequestMembers build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersRequestMembers self = new DeleteWorkspaceMembersRequestMembers();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersRequestMembers setMemberId(String memberId) {
this.memberId = memberId;
return this;
}
public String getMemberId() {
return this.memberId;
}
public DeleteWorkspaceMembersRequestMembers setMemberType(String memberType) {
this.memberType = memberType;
return this;
}
public String getMemberType() {
return this.memberType;
}
}
public static class DeleteWorkspaceMembersRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteWorkspaceMembersRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersRequestTenantContext self = new DeleteWorkspaceMembersRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersRequestTenantContext 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/DeleteWorkspaceMembersResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteWorkspaceMembersResponseBody body;
public static DeleteWorkspaceMembersResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersResponse self = new DeleteWorkspaceMembersResponse();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteWorkspaceMembersResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteWorkspaceMembersResponse setBody(DeleteWorkspaceMembersResponseBody body) {
this.body = body;
return this;
}
public DeleteWorkspaceMembersResponseBody 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/DeleteWorkspaceMembersResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static DeleteWorkspaceMembersResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersResponseBody self = new DeleteWorkspaceMembersResponseBody();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteWorkspaceMembersShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteWorkspaceMembersShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersShrinkHeaders self = new DeleteWorkspaceMembersShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteWorkspaceMembersShrinkHeaders 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/DeleteWorkspaceMembersShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteWorkspaceMembersShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Members")
public String membersShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static DeleteWorkspaceMembersShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteWorkspaceMembersShrinkRequest self = new DeleteWorkspaceMembersShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteWorkspaceMembersShrinkRequest setMembersShrink(String membersShrink) {
this.membersShrink = membersShrink;
return this;
}
public String getMembersShrink() {
return this.membersShrink;
}
public DeleteWorkspaceMembersShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteWorkspaceMembersShrinkRequest 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/DentriesAppPropertiesValue.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DentriesAppPropertiesValue extends TeaModel {
@NameInMap("Name")
public String name;
@NameInMap("Value")
public String value;
/**
* <strong>example:</strong>
* <p>PRIVATE</p>
*/
@NameInMap("Visibility")
public String visibility;
public static DentriesAppPropertiesValue build(java.util.Map<String, ?> map) throws Exception {
DentriesAppPropertiesValue self = new DentriesAppPropertiesValue();
return TeaModel.build(map, self);
}
public DentriesAppPropertiesValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DentriesAppPropertiesValue setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public DentriesAppPropertiesValue setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DentryAppPropertiesValue.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DentryAppPropertiesValue extends TeaModel {
/**
* <strong>example:</strong>
* <p>test</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>value</p>
*/
@NameInMap("Value")
public String value;
/**
* <strong>example:</strong>
* <p>PUBLIC</p>
*/
@NameInMap("Visibility")
public String visibility;
public static DentryAppPropertiesValue build(java.util.Map<String, ?> map) throws Exception {
DentryAppPropertiesValue self = new DentryAppPropertiesValue();
return TeaModel.build(map, self);
}
public DentryAppPropertiesValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public DentryAppPropertiesValue setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
public DentryAppPropertiesValue setVisibility(String visibility) {
this.visibility = visibility;
return this;
}
public String getVisibility() {
return this.visibility;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DocBlocksQueryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DocBlocksQueryHeadersAccountContext accountContext;
public static DocBlocksQueryHeaders build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryHeaders self = new DocBlocksQueryHeaders();
return TeaModel.build(map, self);
}
public DocBlocksQueryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DocBlocksQueryHeaders setAccountContext(DocBlocksQueryHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DocBlocksQueryHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DocBlocksQueryHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DocBlocksQueryHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryHeadersAccountContext self = new DocBlocksQueryHeadersAccountContext();
return TeaModel.build(map, self);
}
public DocBlocksQueryHeadersAccountContext 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/DocBlocksQueryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>heading</p>
*/
@NameInMap("BlockType")
public String blockType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxxx</p>
*/
@NameInMap("DocKey")
public String docKey;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("EndIndex")
public Integer endIndex;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("StartIndex")
public Integer startIndex;
@NameInMap("TenantContext")
public DocBlocksQueryRequestTenantContext tenantContext;
public static DocBlocksQueryRequest build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryRequest self = new DocBlocksQueryRequest();
return TeaModel.build(map, self);
}
public DocBlocksQueryRequest setBlockType(String blockType) {
this.blockType = blockType;
return this;
}
public String getBlockType() {
return this.blockType;
}
public DocBlocksQueryRequest setDocKey(String docKey) {
this.docKey = docKey;
return this;
}
public String getDocKey() {
return this.docKey;
}
public DocBlocksQueryRequest setEndIndex(Integer endIndex) {
this.endIndex = endIndex;
return this;
}
public Integer getEndIndex() {
return this.endIndex;
}
public DocBlocksQueryRequest setStartIndex(Integer startIndex) {
this.startIndex = startIndex;
return this;
}
public Integer getStartIndex() {
return this.startIndex;
}
public DocBlocksQueryRequest setTenantContext(DocBlocksQueryRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DocBlocksQueryRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DocBlocksQueryRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DocBlocksQueryRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryRequestTenantContext self = new DocBlocksQueryRequestTenantContext();
return TeaModel.build(map, self);
}
public DocBlocksQueryRequestTenantContext 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/DocBlocksQueryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DocBlocksQueryResponseBody body;
public static DocBlocksQueryResponse build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryResponse self = new DocBlocksQueryResponse();
return TeaModel.build(map, self);
}
public DocBlocksQueryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DocBlocksQueryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DocBlocksQueryResponse setBody(DocBlocksQueryResponseBody body) {
this.body = body;
return this;
}
public DocBlocksQueryResponseBody 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/DocBlocksQueryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public DocBlocksQueryResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
/**
* <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 DocBlocksQueryResponseBody build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryResponseBody self = new DocBlocksQueryResponseBody();
return TeaModel.build(map, self);
}
public DocBlocksQueryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DocBlocksQueryResponseBody setResult(DocBlocksQueryResponseBodyResult result) {
this.result = result;
return this;
}
public DocBlocksQueryResponseBodyResult getResult() {
return this.result;
}
public DocBlocksQueryResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DocBlocksQueryResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DocBlocksQueryResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class DocBlocksQueryResponseBodyResult extends TeaModel {
@NameInMap("Data")
public java.util.List<?> data;
public static DocBlocksQueryResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryResponseBodyResult self = new DocBlocksQueryResponseBodyResult();
return TeaModel.build(map, self);
}
public DocBlocksQueryResponseBodyResult setData(java.util.List<?> data) {
this.data = data;
return this;
}
public java.util.List<?> getData() {
return this.data;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DocBlocksQueryShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DocBlocksQueryShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryShrinkHeaders self = new DocBlocksQueryShrinkHeaders();
return TeaModel.build(map, self);
}
public DocBlocksQueryShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DocBlocksQueryShrinkHeaders 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/DocBlocksQueryShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocBlocksQueryShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>heading</p>
*/
@NameInMap("BlockType")
public String blockType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxxx</p>
*/
@NameInMap("DocKey")
public String docKey;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("EndIndex")
public Integer endIndex;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("StartIndex")
public Integer startIndex;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DocBlocksQueryShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DocBlocksQueryShrinkRequest self = new DocBlocksQueryShrinkRequest();
return TeaModel.build(map, self);
}
public DocBlocksQueryShrinkRequest setBlockType(String blockType) {
this.blockType = blockType;
return this;
}
public String getBlockType() {
return this.blockType;
}
public DocBlocksQueryShrinkRequest setDocKey(String docKey) {
this.docKey = docKey;
return this;
}
public String getDocKey() {
return this.docKey;
}
public DocBlocksQueryShrinkRequest setEndIndex(Integer endIndex) {
this.endIndex = endIndex;
return this;
}
public Integer getEndIndex() {
return this.endIndex;
}
public DocBlocksQueryShrinkRequest setStartIndex(Integer startIndex) {
this.startIndex = startIndex;
return this;
}
public Integer getStartIndex() {
return this.startIndex;
}
public DocBlocksQueryShrinkRequest 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/DocUpdateContentHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DocUpdateContentHeadersAccountContext accountContext;
public static DocUpdateContentHeaders build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentHeaders self = new DocUpdateContentHeaders();
return TeaModel.build(map, self);
}
public DocUpdateContentHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DocUpdateContentHeaders setAccountContext(DocUpdateContentHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DocUpdateContentHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DocUpdateContentHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DocUpdateContentHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentHeadersAccountContext self = new DocUpdateContentHeadersAccountContext();
return TeaModel.build(map, self);
}
public DocUpdateContentHeadersAccountContext 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/DocUpdateContentRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("Content")
public String content;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("DataType")
public String dataType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4j6OJzVEG4jJO3p8</p>
*/
@NameInMap("DocKey")
public String docKey;
@NameInMap("TenantContext")
public DocUpdateContentRequestTenantContext tenantContext;
public static DocUpdateContentRequest build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentRequest self = new DocUpdateContentRequest();
return TeaModel.build(map, self);
}
public DocUpdateContentRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public DocUpdateContentRequest setDataType(String dataType) {
this.dataType = dataType;
return this;
}
public String getDataType() {
return this.dataType;
}
public DocUpdateContentRequest setDocKey(String docKey) {
this.docKey = docKey;
return this;
}
public String getDocKey() {
return this.docKey;
}
public DocUpdateContentRequest setTenantContext(DocUpdateContentRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DocUpdateContentRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DocUpdateContentRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DocUpdateContentRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentRequestTenantContext self = new DocUpdateContentRequestTenantContext();
return TeaModel.build(map, self);
}
public DocUpdateContentRequestTenantContext 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/DocUpdateContentResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DocUpdateContentResponseBody body;
public static DocUpdateContentResponse build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentResponse self = new DocUpdateContentResponse();
return TeaModel.build(map, self);
}
public DocUpdateContentResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DocUpdateContentResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DocUpdateContentResponse setBody(DocUpdateContentResponseBody body) {
this.body = body;
return this;
}
public DocUpdateContentResponseBody 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/DocUpdateContentResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("value")
public Boolean 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 DocUpdateContentResponseBody build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentResponseBody self = new DocUpdateContentResponseBody();
return TeaModel.build(map, self);
}
public DocUpdateContentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DocUpdateContentResponseBody setValue(Boolean value) {
this.value = value;
return this;
}
public Boolean getValue() {
return this.value;
}
public DocUpdateContentResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DocUpdateContentResponseBody 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/DocUpdateContentShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DocUpdateContentShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentShrinkHeaders self = new DocUpdateContentShrinkHeaders();
return TeaModel.build(map, self);
}
public DocUpdateContentShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DocUpdateContentShrinkHeaders 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/DocUpdateContentShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DocUpdateContentShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("Content")
public String content;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("DataType")
public String dataType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4j6OJzVEG4jJO3p8</p>
*/
@NameInMap("DocKey")
public String docKey;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DocUpdateContentShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DocUpdateContentShrinkRequest self = new DocUpdateContentShrinkRequest();
return TeaModel.build(map, self);
}
public DocUpdateContentShrinkRequest setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public DocUpdateContentShrinkRequest setDataType(String dataType) {
this.dataType = dataType;
return this;
}
public String getDataType() {
return this.dataType;
}
public DocUpdateContentShrinkRequest setDocKey(String docKey) {
this.docKey = docKey;
return this;
}
public String getDocKey() {
return this.docKey;
}
public DocUpdateContentShrinkRequest 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/ExecuteBatchTaskHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ExecuteBatchTaskHeadersAccountContext accountContext;
public static ExecuteBatchTaskHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskHeaders self = new ExecuteBatchTaskHeaders();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecuteBatchTaskHeaders setAccountContext(ExecuteBatchTaskHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ExecuteBatchTaskHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ExecuteBatchTaskHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ExecuteBatchTaskHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskHeadersAccountContext self = new ExecuteBatchTaskHeadersAccountContext();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskHeadersAccountContext 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/ExecuteBatchTaskRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKTxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>disagree</p>
*/
@NameInMap("OutResult")
public String outResult;
/**
* <strong>example:</strong>
* <p>remark</p>
*/
@NameInMap("Remark")
public String remark;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>[{"taskId":"2291xxx","formInstId":"d84a79xxx"}, {"taskId":"2291xxx","formInstId":"f8035e2axxx"}]</p>
*/
@NameInMap("TaskInformationList")
public String taskInformationList;
public static ExecuteBatchTaskRequest build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskRequest self = new ExecuteBatchTaskRequest();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ExecuteBatchTaskRequest setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public ExecuteBatchTaskRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ExecuteBatchTaskRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public ExecuteBatchTaskRequest setTaskInformationList(String taskInformationList) {
this.taskInformationList = taskInformationList;
return this;
}
public String getTaskInformationList() {
return this.taskInformationList;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ExecuteBatchTaskResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ExecuteBatchTaskResponseBody body;
public static ExecuteBatchTaskResponse build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskResponse self = new ExecuteBatchTaskResponse();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ExecuteBatchTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ExecuteBatchTaskResponse setBody(ExecuteBatchTaskResponseBody body) {
this.body = body;
return this;
}
public ExecuteBatchTaskResponseBody 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/ExecuteBatchTaskResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("failNumber")
public Integer failNumber;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>2</p>
*/
@NameInMap("successNumber")
public Integer successNumber;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("total")
public Integer total;
/**
* <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 ExecuteBatchTaskResponseBody build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskResponseBody self = new ExecuteBatchTaskResponseBody();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskResponseBody setFailNumber(Integer failNumber) {
this.failNumber = failNumber;
return this;
}
public Integer getFailNumber() {
return this.failNumber;
}
public ExecuteBatchTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ExecuteBatchTaskResponseBody setSuccessNumber(Integer successNumber) {
this.successNumber = successNumber;
return this;
}
public Integer getSuccessNumber() {
return this.successNumber;
}
public ExecuteBatchTaskResponseBody setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ExecuteBatchTaskResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ExecuteBatchTaskResponseBody 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/ExecuteBatchTaskShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteBatchTaskShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ExecuteBatchTaskShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecuteBatchTaskShrinkHeaders self = new ExecuteBatchTaskShrinkHeaders();
return TeaModel.build(map, self);
}
public ExecuteBatchTaskShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecuteBatchTaskShrinkHeaders 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/ExecutePlatformTaskHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecutePlatformTaskHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ExecutePlatformTaskHeadersAccountContext accountContext;
public static ExecutePlatformTaskHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskHeaders self = new ExecutePlatformTaskHeaders();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecutePlatformTaskHeaders setAccountContext(ExecutePlatformTaskHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ExecutePlatformTaskHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ExecutePlatformTaskHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ExecutePlatformTaskHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskHeadersAccountContext self = new ExecutePlatformTaskHeadersAccountContext();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskHeadersAccountContext 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/ExecutePlatformTaskRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecutePlatformTaskRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("FormDataJson")
public String formDataJson;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>y</p>
*/
@NameInMap("NoExecuteExpressions")
public String noExecuteExpressions;
/**
* <strong>example:</strong>
* <p>Agree</p>
*/
@NameInMap("OutResult")
public String outResult;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
@NameInMap("Remark")
public String remark;
/**
* <strong>example:</strong>
* <p>hexxyy</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static ExecutePlatformTaskRequest build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskRequest self = new ExecutePlatformTaskRequest();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ExecutePlatformTaskRequest setFormDataJson(String formDataJson) {
this.formDataJson = formDataJson;
return this;
}
public String getFormDataJson() {
return this.formDataJson;
}
public ExecutePlatformTaskRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public ExecutePlatformTaskRequest setNoExecuteExpressions(String noExecuteExpressions) {
this.noExecuteExpressions = noExecuteExpressions;
return this;
}
public String getNoExecuteExpressions() {
return this.noExecuteExpressions;
}
public ExecutePlatformTaskRequest setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public ExecutePlatformTaskRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public ExecutePlatformTaskRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ExecutePlatformTaskRequest 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/ExecutePlatformTaskResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecutePlatformTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ExecutePlatformTaskResponseBody body;
public static ExecutePlatformTaskResponse build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskResponse self = new ExecutePlatformTaskResponse();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ExecutePlatformTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ExecutePlatformTaskResponse setBody(ExecutePlatformTaskResponseBody body) {
this.body = body;
return this;
}
public ExecutePlatformTaskResponseBody 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/ExecutePlatformTaskResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecutePlatformTaskResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static ExecutePlatformTaskResponseBody build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskResponseBody self = new ExecutePlatformTaskResponseBody();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ExecutePlatformTaskResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ExecutePlatformTaskResponseBody 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/ExecutePlatformTaskShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecutePlatformTaskShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ExecutePlatformTaskShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecutePlatformTaskShrinkHeaders self = new ExecutePlatformTaskShrinkHeaders();
return TeaModel.build(map, self);
}
public ExecutePlatformTaskShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecutePlatformTaskShrinkHeaders 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/ExecuteTaskHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteTaskHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ExecuteTaskHeadersAccountContext accountContext;
public static ExecuteTaskHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskHeaders self = new ExecuteTaskHeaders();
return TeaModel.build(map, self);
}
public ExecuteTaskHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecuteTaskHeaders setAccountContext(ExecuteTaskHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ExecuteTaskHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ExecuteTaskHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ExecuteTaskHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskHeadersAccountContext self = new ExecuteTaskHeadersAccountContext();
return TeaModel.build(map, self);
}
public ExecuteTaskHeadersAccountContext 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/ExecuteTaskRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteTaskRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBKT0MFBEBTDO8T7SLVP</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>http://</p>
*/
@NameInMap("DigitalSignUrl")
public String digitalSignUrl;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("FormDataJson")
public String formDataJson;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>y</p>
*/
@NameInMap("NoExecuteExpressions")
public String noExecuteExpressions;
/**
* <strong>example:</strong>
* <p>AGREE</p>
*/
@NameInMap("OutResult")
public String outResult;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-4af4-8cb8-c7e0ea9ee530</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
@NameInMap("Remark")
public String remark;
/**
* <strong>example:</strong>
* <p>hexxyy</p>
*/
@NameInMap("SystemToken")
public String systemToken;
/**
* <strong>example:</strong>
* <p>12002575L</p>
*/
@NameInMap("TaskId")
public Long taskId;
public static ExecuteTaskRequest build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskRequest self = new ExecuteTaskRequest();
return TeaModel.build(map, self);
}
public ExecuteTaskRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ExecuteTaskRequest setDigitalSignUrl(String digitalSignUrl) {
this.digitalSignUrl = digitalSignUrl;
return this;
}
public String getDigitalSignUrl() {
return this.digitalSignUrl;
}
public ExecuteTaskRequest setFormDataJson(String formDataJson) {
this.formDataJson = formDataJson;
return this;
}
public String getFormDataJson() {
return this.formDataJson;
}
public ExecuteTaskRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public ExecuteTaskRequest setNoExecuteExpressions(String noExecuteExpressions) {
this.noExecuteExpressions = noExecuteExpressions;
return this;
}
public String getNoExecuteExpressions() {
return this.noExecuteExpressions;
}
public ExecuteTaskRequest setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public ExecuteTaskRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public ExecuteTaskRequest setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ExecuteTaskRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public ExecuteTaskRequest setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ExecuteTaskResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ExecuteTaskResponseBody body;
public static ExecuteTaskResponse build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskResponse self = new ExecuteTaskResponse();
return TeaModel.build(map, self);
}
public ExecuteTaskResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ExecuteTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ExecuteTaskResponse setBody(ExecuteTaskResponseBody body) {
this.body = body;
return this;
}
public ExecuteTaskResponseBody 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/ExecuteTaskResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteTaskResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static ExecuteTaskResponseBody build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskResponseBody self = new ExecuteTaskResponseBody();
return TeaModel.build(map, self);
}
public ExecuteTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ExecuteTaskResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ExecuteTaskResponseBody 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/ExecuteTaskShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExecuteTaskShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ExecuteTaskShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ExecuteTaskShrinkHeaders self = new ExecuteTaskShrinkHeaders();
return TeaModel.build(map, self);
}
public ExecuteTaskShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExecuteTaskShrinkHeaders 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/ExpandGroupCapacityHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ExpandGroupCapacityHeadersAccountContext accountContext;
public static ExpandGroupCapacityHeaders build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityHeaders self = new ExpandGroupCapacityHeaders();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExpandGroupCapacityHeaders setAccountContext(ExpandGroupCapacityHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ExpandGroupCapacityHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ExpandGroupCapacityHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ExpandGroupCapacityHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityHeadersAccountContext self = new ExpandGroupCapacityHeadersAccountContext();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityHeadersAccountContext 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/ExpandGroupCapacityRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidt*****Xa4K10w==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("TenantContext")
public ExpandGroupCapacityRequestTenantContext tenantContext;
public static ExpandGroupCapacityRequest build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityRequest self = new ExpandGroupCapacityRequest();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public ExpandGroupCapacityRequest setTenantContext(ExpandGroupCapacityRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ExpandGroupCapacityRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ExpandGroupCapacityRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ExpandGroupCapacityRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityRequestTenantContext self = new ExpandGroupCapacityRequestTenantContext();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityRequestTenantContext 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/ExpandGroupCapacityResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ExpandGroupCapacityResponseBody body;
public static ExpandGroupCapacityResponse build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityResponse self = new ExpandGroupCapacityResponse();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ExpandGroupCapacityResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ExpandGroupCapacityResponse setBody(ExpandGroupCapacityResponseBody body) {
this.body = body;
return this;
}
public ExpandGroupCapacityResponseBody 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/ExpandGroupCapacityResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
/**
* <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 ExpandGroupCapacityResponseBody build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityResponseBody self = new ExpandGroupCapacityResponseBody();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ExpandGroupCapacityResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public ExpandGroupCapacityResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ExpandGroupCapacityResponseBody 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/ExpandGroupCapacityShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ExpandGroupCapacityShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityShrinkHeaders self = new ExpandGroupCapacityShrinkHeaders();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ExpandGroupCapacityShrinkHeaders 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/ExpandGroupCapacityShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ExpandGroupCapacityShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidt*****Xa4K10w==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ExpandGroupCapacityShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ExpandGroupCapacityShrinkRequest self = new ExpandGroupCapacityShrinkRequest();
return TeaModel.build(map, self);
}
public ExpandGroupCapacityShrinkRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public ExpandGroupCapacityShrinkRequest 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/FinishTicketHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public FinishTicketHeadersAccountContext accountContext;
public static FinishTicketHeaders build(java.util.Map<String, ?> map) throws Exception {
FinishTicketHeaders self = new FinishTicketHeaders();
return TeaModel.build(map, self);
}
public FinishTicketHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public FinishTicketHeaders setAccountContext(FinishTicketHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public FinishTicketHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class FinishTicketHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static FinishTicketHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
FinishTicketHeadersAccountContext self = new FinishTicketHeadersAccountContext();
return TeaModel.build(map, self);
}
public FinishTicketHeadersAccountContext 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/FinishTicketRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketRequest extends TeaModel {
@NameInMap("Notify")
public FinishTicketRequestNotify notify;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>eKWh3xxxxiE</p>
*/
@NameInMap("OpenTeamId")
public String openTeamId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Dq9hP8Sk2v6vQxxxxiE</p>
*/
@NameInMap("OpenTicketId")
public String openTicketId;
@NameInMap("TenantContext")
public FinishTicketRequestTenantContext tenantContext;
@NameInMap("TicketMemo")
public FinishTicketRequestTicketMemo ticketMemo;
public static FinishTicketRequest build(java.util.Map<String, ?> map) throws Exception {
FinishTicketRequest self = new FinishTicketRequest();
return TeaModel.build(map, self);
}
public FinishTicketRequest setNotify(FinishTicketRequestNotify notify) {
this.notify = notify;
return this;
}
public FinishTicketRequestNotify getNotify() {
return this.notify;
}
public FinishTicketRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public FinishTicketRequest setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
public FinishTicketRequest setTenantContext(FinishTicketRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public FinishTicketRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public FinishTicketRequest setTicketMemo(FinishTicketRequestTicketMemo ticketMemo) {
this.ticketMemo = ticketMemo;
return this;
}
public FinishTicketRequestTicketMemo getTicketMemo() {
return this.ticketMemo;
}
public static class FinishTicketRequestNotify extends TeaModel {
@NameInMap("GroupNoticeReceiverUserIds")
public java.util.List<String> groupNoticeReceiverUserIds;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("NoticeAllGroupMember")
public Boolean noticeAllGroupMember;
@NameInMap("WorkNoticeReceiverUserIds")
public java.util.List<String> workNoticeReceiverUserIds;
public static FinishTicketRequestNotify build(java.util.Map<String, ?> map) throws Exception {
FinishTicketRequestNotify self = new FinishTicketRequestNotify();
return TeaModel.build(map, self);
}
public FinishTicketRequestNotify setGroupNoticeReceiverUserIds(java.util.List<String> groupNoticeReceiverUserIds) {
this.groupNoticeReceiverUserIds = groupNoticeReceiverUserIds;
return this;
}
public java.util.List<String> getGroupNoticeReceiverUserIds() {
return this.groupNoticeReceiverUserIds;
}
public FinishTicketRequestNotify setNoticeAllGroupMember(Boolean noticeAllGroupMember) {
this.noticeAllGroupMember = noticeAllGroupMember;
return this;
}
public Boolean getNoticeAllGroupMember() {
return this.noticeAllGroupMember;
}
public FinishTicketRequestNotify setWorkNoticeReceiverUserIds(java.util.List<String> workNoticeReceiverUserIds) {
this.workNoticeReceiverUserIds = workNoticeReceiverUserIds;
return this;
}
public java.util.List<String> getWorkNoticeReceiverUserIds() {
return this.workNoticeReceiverUserIds;
}
}
public static class FinishTicketRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static FinishTicketRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
FinishTicketRequestTenantContext self = new FinishTicketRequestTenantContext();
return TeaModel.build(map, self);
}
public FinishTicketRequestTenantContext setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
}
public static class FinishTicketRequestTicketMemoAttachments extends TeaModel {
/**
* <strong>example:</strong>
* <p>wahaha.txt</p>
*/
@NameInMap("FileName")
public String fileName;
/**
* <strong>example:</strong>
* <p>ticket/image/44xxxx9/43003/e27xxxx1640499.txt</p>
*/
@NameInMap("Key")
public String key;
public static FinishTicketRequestTicketMemoAttachments build(java.util.Map<String, ?> map) throws Exception {
FinishTicketRequestTicketMemoAttachments self = new FinishTicketRequestTicketMemoAttachments();
return TeaModel.build(map, self);
}
public FinishTicketRequestTicketMemoAttachments setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public FinishTicketRequestTicketMemoAttachments setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
}
public static class FinishTicketRequestTicketMemo extends TeaModel {
@NameInMap("Attachments")
public java.util.List<FinishTicketRequestTicketMemoAttachments> attachments;
@NameInMap("Memo")
public String memo;
public static FinishTicketRequestTicketMemo build(java.util.Map<String, ?> map) throws Exception {
FinishTicketRequestTicketMemo self = new FinishTicketRequestTicketMemo();
return TeaModel.build(map, self);
}
public FinishTicketRequestTicketMemo setAttachments(java.util.List<FinishTicketRequestTicketMemoAttachments> attachments) {
this.attachments = attachments;
return this;
}
public java.util.List<FinishTicketRequestTicketMemoAttachments> getAttachments() {
return this.attachments;
}
public FinishTicketRequestTicketMemo setMemo(String memo) {
this.memo = memo;
return this;
}
public String getMemo() {
return this.memo;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/FinishTicketResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public FinishTicketResponseBody body;
public static FinishTicketResponse build(java.util.Map<String, ?> map) throws Exception {
FinishTicketResponse self = new FinishTicketResponse();
return TeaModel.build(map, self);
}
public FinishTicketResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public FinishTicketResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public FinishTicketResponse setBody(FinishTicketResponseBody body) {
this.body = body;
return this;
}
public FinishTicketResponseBody 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/FinishTicketResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static FinishTicketResponseBody build(java.util.Map<String, ?> map) throws Exception {
FinishTicketResponseBody self = new FinishTicketResponseBody();
return TeaModel.build(map, self);
}
public FinishTicketResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public FinishTicketResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public FinishTicketResponseBody 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/FinishTicketShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static FinishTicketShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
FinishTicketShrinkHeaders self = new FinishTicketShrinkHeaders();
return TeaModel.build(map, self);
}
public FinishTicketShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public FinishTicketShrinkHeaders 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/FinishTicketShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class FinishTicketShrinkRequest extends TeaModel {
@NameInMap("Notify")
public String notifyShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>eKWh3xxxxiE</p>
*/
@NameInMap("OpenTeamId")
public String openTeamId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Dq9hP8Sk2v6vQxxxxiE</p>
*/
@NameInMap("OpenTicketId")
public String openTicketId;
@NameInMap("TenantContext")
public String tenantContextShrink;
@NameInMap("TicketMemo")
public String ticketMemoShrink;
public static FinishTicketShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
FinishTicketShrinkRequest self = new FinishTicketShrinkRequest();
return TeaModel.build(map, self);
}
public FinishTicketShrinkRequest setNotifyShrink(String notifyShrink) {
this.notifyShrink = notifyShrink;
return this;
}
public String getNotifyShrink() {
return this.notifyShrink;
}
public FinishTicketShrinkRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public FinishTicketShrinkRequest setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
public FinishTicketShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public FinishTicketShrinkRequest setTicketMemoShrink(String ticketMemoShrink) {
this.ticketMemoShrink = ticketMemoShrink;
return this;
}
public String getTicketMemoShrink() {
return this.ticketMemoShrink;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetActivityListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetActivityListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetActivityListHeadersAccountContext accountContext;
public static GetActivityListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetActivityListHeaders self = new GetActivityListHeaders();
return TeaModel.build(map, self);
}
public GetActivityListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetActivityListHeaders setAccountContext(GetActivityListHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetActivityListHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetActivityListHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetActivityListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetActivityListHeadersAccountContext self = new GetActivityListHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetActivityListHeadersAccountContext 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/GetActivityListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetActivityListRequest 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>TPROC--X1Gxx</p>
*/
@NameInMap("ProcessCode")
public String processCode;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetActivityListRequest build(java.util.Map<String, ?> map) throws Exception {
GetActivityListRequest self = new GetActivityListRequest();
return TeaModel.build(map, self);
}
public GetActivityListRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetActivityListRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetActivityListRequest setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public GetActivityListRequest 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/GetActivityListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetActivityListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetActivityListResponseBody body;
public static GetActivityListResponse build(java.util.Map<String, ?> map) throws Exception {
GetActivityListResponse self = new GetActivityListResponse();
return TeaModel.build(map, self);
}
public GetActivityListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetActivityListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetActivityListResponse setBody(GetActivityListResponseBody body) {
this.body = body;
return this;
}
public GetActivityListResponseBody 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/GetActivityListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetActivityListResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public java.util.List<GetActivityListResponseBodyResult> 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 GetActivityListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetActivityListResponseBody self = new GetActivityListResponseBody();
return TeaModel.build(map, self);
}
public GetActivityListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetActivityListResponseBody setResult(java.util.List<GetActivityListResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetActivityListResponseBodyResult> getResult() {
return this.result;
}
public GetActivityListResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetActivityListResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetActivityListResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>0q8gsudxxx</p>
*/
@NameInMap("ActivityId")
public String activityId;
/**
* <strong>example:</strong>
* <p>activity123</p>
*/
@NameInMap("ActivityName")
public String activityName;
/**
* <strong>example:</strong>
* <p>activity123</p>
*/
@NameInMap("ActivityNameInEnglish")
public String activityNameInEnglish;
public static GetActivityListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetActivityListResponseBodyResult self = new GetActivityListResponseBodyResult();
return TeaModel.build(map, self);
}
public GetActivityListResponseBodyResult setActivityId(String activityId) {
this.activityId = activityId;
return this;
}
public String getActivityId() {
return this.activityId;
}
public GetActivityListResponseBodyResult setActivityName(String activityName) {
this.activityName = activityName;
return this;
}
public String getActivityName() {
return this.activityName;
}
public GetActivityListResponseBodyResult setActivityNameInEnglish(String activityNameInEnglish) {
this.activityNameInEnglish = activityNameInEnglish;
return this;
}
public String getActivityNameInEnglish() {
return this.activityNameInEnglish;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetActivityListShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetActivityListShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetActivityListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetActivityListShrinkHeaders self = new GetActivityListShrinkHeaders();
return TeaModel.build(map, self);
}
public GetActivityListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetActivityListShrinkHeaders 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/GetAlidingAssistantInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetAlidingAssistantInfoHeadersAccountContext accountContext;
public static GetAlidingAssistantInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoHeaders self = new GetAlidingAssistantInfoHeaders();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetAlidingAssistantInfoHeaders setAccountContext(GetAlidingAssistantInfoHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetAlidingAssistantInfoHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetAlidingAssistantInfoHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetAlidingAssistantInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoHeadersAccountContext self = new GetAlidingAssistantInfoHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoHeadersAccountContext 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/GetAlidingAssistantInfoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("AssistantId")
public String assistantId;
@NameInMap("TenantContext")
public GetAlidingAssistantInfoRequestTenantContext tenantContext;
public static GetAlidingAssistantInfoRequest build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoRequest self = new GetAlidingAssistantInfoRequest();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public GetAlidingAssistantInfoRequest setTenantContext(GetAlidingAssistantInfoRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetAlidingAssistantInfoRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetAlidingAssistantInfoRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetAlidingAssistantInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoRequestTenantContext self = new GetAlidingAssistantInfoRequestTenantContext();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoRequestTenantContext 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/GetAlidingAssistantInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetAlidingAssistantInfoResponseBody body;
public static GetAlidingAssistantInfoResponse build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoResponse self = new GetAlidingAssistantInfoResponse();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetAlidingAssistantInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetAlidingAssistantInfoResponse setBody(GetAlidingAssistantInfoResponseBody body) {
this.body = body;
return this;
}
public GetAlidingAssistantInfoResponseBody 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/GetAlidingAssistantInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("approvalStatus")
public Integer approvalStatus;
/**
* <strong>example:</strong>
* <p>123</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>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetAlidingAssistantInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoResponseBody self = new GetAlidingAssistantInfoResponseBody();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoResponseBody setApprovalStatus(Integer approvalStatus) {
this.approvalStatus = approvalStatus;
return this;
}
public Integer getApprovalStatus() {
return this.approvalStatus;
}
public GetAlidingAssistantInfoResponseBody setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetAlidingAssistantInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetAlidingAssistantInfoResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetAlidingAssistantInfoResponseBody 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/GetAlidingAssistantInfoShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetAlidingAssistantInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoShrinkHeaders self = new GetAlidingAssistantInfoShrinkHeaders();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetAlidingAssistantInfoShrinkHeaders 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/GetAlidingAssistantInfoShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAlidingAssistantInfoShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("AssistantId")
public String assistantId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetAlidingAssistantInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetAlidingAssistantInfoShrinkRequest self = new GetAlidingAssistantInfoShrinkRequest();
return TeaModel.build(map, self);
}
public GetAlidingAssistantInfoShrinkRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public GetAlidingAssistantInfoShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.