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/CreateThreadRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateThreadRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>assistantId1</p>
*/
@NameInMap("assistantId")
public String assistantId;
/**
* <strong>example:</strong>
* <p>assistantId</p>
*/
@NameInMap("originalAssistantId")
public String originalAssistantId;
/**
* <strong>example:</strong>
* <p>agentKey1</p>
*/
@NameInMap("sourceIdOfOriginalAssistantId")
public String sourceIdOfOriginalAssistantId;
@NameInMap("sourceTypeOfOriginalAssistantId")
public Integer sourceTypeOfOriginalAssistantId;
public static CreateThreadRequest build(java.util.Map<String, ?> map) throws Exception {
CreateThreadRequest self = new CreateThreadRequest();
return TeaModel.build(map, self);
}
public CreateThreadRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public CreateThreadRequest setOriginalAssistantId(String originalAssistantId) {
this.originalAssistantId = originalAssistantId;
return this;
}
public String getOriginalAssistantId() {
return this.originalAssistantId;
}
public CreateThreadRequest setSourceIdOfOriginalAssistantId(String sourceIdOfOriginalAssistantId) {
this.sourceIdOfOriginalAssistantId = sourceIdOfOriginalAssistantId;
return this;
}
public String getSourceIdOfOriginalAssistantId() {
return this.sourceIdOfOriginalAssistantId;
}
public CreateThreadRequest setSourceTypeOfOriginalAssistantId(Integer sourceTypeOfOriginalAssistantId) {
this.sourceTypeOfOriginalAssistantId = sourceTypeOfOriginalAssistantId;
return this;
}
public Integer getSourceTypeOfOriginalAssistantId() {
return this.sourceTypeOfOriginalAssistantId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateThreadResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateThreadResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateThreadResponseBody body;
public static CreateThreadResponse build(java.util.Map<String, ?> map) throws Exception {
CreateThreadResponse self = new CreateThreadResponse();
return TeaModel.build(map, self);
}
public CreateThreadResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateThreadResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateThreadResponse setBody(CreateThreadResponseBody body) {
this.body = body;
return this;
}
public CreateThreadResponseBody 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/CreateThreadResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateThreadResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("thread")
public CreateThreadResponseBodyThread thread;
public static CreateThreadResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateThreadResponseBody self = new CreateThreadResponseBody();
return TeaModel.build(map, self);
}
public CreateThreadResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateThreadResponseBody setThread(CreateThreadResponseBodyThread thread) {
this.thread = thread;
return this;
}
public CreateThreadResponseBodyThread getThread() {
return this.thread;
}
public static class CreateThreadResponseBodyThread extends TeaModel {
@NameInMap("createAt")
public Long createAt;
@NameInMap("id")
public String id;
public static CreateThreadResponseBodyThread build(java.util.Map<String, ?> map) throws Exception {
CreateThreadResponseBodyThread self = new CreateThreadResponseBodyThread();
return TeaModel.build(map, self);
}
public CreateThreadResponseBodyThread setCreateAt(Long createAt) {
this.createAt = createAt;
return this;
}
public Long getCreateAt() {
return this.createAt;
}
public CreateThreadResponseBodyThread setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateTicketHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public CreateTicketHeadersAccountContext accountContext;
public static CreateTicketHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateTicketHeaders self = new CreateTicketHeaders();
return TeaModel.build(map, self);
}
public CreateTicketHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateTicketHeaders setAccountContext(CreateTicketHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public CreateTicketHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class CreateTicketHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static CreateTicketHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
CreateTicketHeadersAccountContext self = new CreateTicketHeadersAccountContext();
return TeaModel.build(map, self);
}
public CreateTicketHeadersAccountContext 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/CreateTicketRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("CustomFields")
public String customFields;
@NameInMap("Notify")
public CreateTicketRequestNotify notify;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>G3IOe205RLciE</p>
*/
@NameInMap("OpenTeamId")
public String openTeamId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxxx</p>
*/
@NameInMap("OpenTemplateBizId")
public String openTemplateBizId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ProcessorUserIds")
public java.util.List<String> processorUserIds;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>SG</p>
*/
@NameInMap("Scene")
public String scene;
@NameInMap("SceneContext")
public CreateTicketRequestSceneContext sceneContext;
@NameInMap("TenantContext")
public CreateTicketRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Killer Ball Wo Mouichido</p>
*/
@NameInMap("Title")
public String title;
public static CreateTicketRequest build(java.util.Map<String, ?> map) throws Exception {
CreateTicketRequest self = new CreateTicketRequest();
return TeaModel.build(map, self);
}
public CreateTicketRequest setCustomFields(String customFields) {
this.customFields = customFields;
return this;
}
public String getCustomFields() {
return this.customFields;
}
public CreateTicketRequest setNotify(CreateTicketRequestNotify notify) {
this.notify = notify;
return this;
}
public CreateTicketRequestNotify getNotify() {
return this.notify;
}
public CreateTicketRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public CreateTicketRequest setOpenTemplateBizId(String openTemplateBizId) {
this.openTemplateBizId = openTemplateBizId;
return this;
}
public String getOpenTemplateBizId() {
return this.openTemplateBizId;
}
public CreateTicketRequest setProcessorUserIds(java.util.List<String> processorUserIds) {
this.processorUserIds = processorUserIds;
return this;
}
public java.util.List<String> getProcessorUserIds() {
return this.processorUserIds;
}
public CreateTicketRequest setScene(String scene) {
this.scene = scene;
return this;
}
public String getScene() {
return this.scene;
}
public CreateTicketRequest setSceneContext(CreateTicketRequestSceneContext sceneContext) {
this.sceneContext = sceneContext;
return this;
}
public CreateTicketRequestSceneContext getSceneContext() {
return this.sceneContext;
}
public CreateTicketRequest setTenantContext(CreateTicketRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public CreateTicketRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public CreateTicketRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public static class CreateTicketRequestNotify extends TeaModel {
@NameInMap("GroupNoticeReceiverUserIds")
public java.util.List<String> groupNoticeReceiverUserIds;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("NoticeAllGroupMember")
public Boolean noticeAllGroupMember;
@NameInMap("WorkNoticeReceiverUserIds")
public java.util.List<String> workNoticeReceiverUserIds;
public static CreateTicketRequestNotify build(java.util.Map<String, ?> map) throws Exception {
CreateTicketRequestNotify self = new CreateTicketRequestNotify();
return TeaModel.build(map, self);
}
public CreateTicketRequestNotify setGroupNoticeReceiverUserIds(java.util.List<String> groupNoticeReceiverUserIds) {
this.groupNoticeReceiverUserIds = groupNoticeReceiverUserIds;
return this;
}
public java.util.List<String> getGroupNoticeReceiverUserIds() {
return this.groupNoticeReceiverUserIds;
}
public CreateTicketRequestNotify setNoticeAllGroupMember(Boolean noticeAllGroupMember) {
this.noticeAllGroupMember = noticeAllGroupMember;
return this;
}
public Boolean getNoticeAllGroupMember() {
return this.noticeAllGroupMember;
}
public CreateTicketRequestNotify setWorkNoticeReceiverUserIds(java.util.List<String> workNoticeReceiverUserIds) {
this.workNoticeReceiverUserIds = workNoticeReceiverUserIds;
return this;
}
public java.util.List<String> getWorkNoticeReceiverUserIds() {
return this.workNoticeReceiverUserIds;
}
}
public static class CreateTicketRequestSceneContextGroupMsgs extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Anchor")
public Boolean anchor;
/**
* <strong>example:</strong>
* <p>1234567</p>
*/
@NameInMap("OpenMsgId")
public String openMsgId;
public static CreateTicketRequestSceneContextGroupMsgs build(java.util.Map<String, ?> map) throws Exception {
CreateTicketRequestSceneContextGroupMsgs self = new CreateTicketRequestSceneContextGroupMsgs();
return TeaModel.build(map, self);
}
public CreateTicketRequestSceneContextGroupMsgs setAnchor(Boolean anchor) {
this.anchor = anchor;
return this;
}
public Boolean getAnchor() {
return this.anchor;
}
public CreateTicketRequestSceneContextGroupMsgs setOpenMsgId(String openMsgId) {
this.openMsgId = openMsgId;
return this;
}
public String getOpenMsgId() {
return this.openMsgId;
}
}
public static class CreateTicketRequestSceneContext extends TeaModel {
@NameInMap("GroupMsgs")
public java.util.List<CreateTicketRequestSceneContextGroupMsgs> groupMsgs;
/**
* <strong>example:</strong>
* <p>cidDKVAOW8yVWPEN+WZfwSSAQ==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("RelevantorUserIds")
public java.util.List<String> relevantorUserIds;
/**
* <strong>example:</strong>
* <p>42674892</p>
*/
@NameInMap("TopicId")
public String topicId;
public static CreateTicketRequestSceneContext build(java.util.Map<String, ?> map) throws Exception {
CreateTicketRequestSceneContext self = new CreateTicketRequestSceneContext();
return TeaModel.build(map, self);
}
public CreateTicketRequestSceneContext setGroupMsgs(java.util.List<CreateTicketRequestSceneContextGroupMsgs> groupMsgs) {
this.groupMsgs = groupMsgs;
return this;
}
public java.util.List<CreateTicketRequestSceneContextGroupMsgs> getGroupMsgs() {
return this.groupMsgs;
}
public CreateTicketRequestSceneContext setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public CreateTicketRequestSceneContext setRelevantorUserIds(java.util.List<String> relevantorUserIds) {
this.relevantorUserIds = relevantorUserIds;
return this;
}
public java.util.List<String> getRelevantorUserIds() {
return this.relevantorUserIds;
}
public CreateTicketRequestSceneContext setTopicId(String topicId) {
this.topicId = topicId;
return this;
}
public String getTopicId() {
return this.topicId;
}
}
public static class CreateTicketRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static CreateTicketRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
CreateTicketRequestTenantContext self = new CreateTicketRequestTenantContext();
return TeaModel.build(map, self);
}
public CreateTicketRequestTenantContext 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/CreateTicketResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateTicketResponseBody body;
public static CreateTicketResponse build(java.util.Map<String, ?> map) throws Exception {
CreateTicketResponse self = new CreateTicketResponse();
return TeaModel.build(map, self);
}
public CreateTicketResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateTicketResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateTicketResponse setBody(CreateTicketResponseBody body) {
this.body = body;
return this;
}
public CreateTicketResponseBody 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/CreateTicketResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>a8iSxxxxtgiE</p>
*/
@NameInMap("openTicketId")
public String openTicketId;
/**
* <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 CreateTicketResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateTicketResponseBody self = new CreateTicketResponseBody();
return TeaModel.build(map, self);
}
public CreateTicketResponseBody setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
public CreateTicketResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateTicketResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public CreateTicketResponseBody 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/CreateTicketShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static CreateTicketShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateTicketShrinkHeaders self = new CreateTicketShrinkHeaders();
return TeaModel.build(map, self);
}
public CreateTicketShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateTicketShrinkHeaders 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/CreateTicketShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTicketShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("CustomFields")
public String customFields;
@NameInMap("Notify")
public String notifyShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>G3IOe205RLciE</p>
*/
@NameInMap("OpenTeamId")
public String openTeamId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxxx</p>
*/
@NameInMap("OpenTemplateBizId")
public String openTemplateBizId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ProcessorUserIds")
public String processorUserIdsShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>SG</p>
*/
@NameInMap("Scene")
public String scene;
@NameInMap("SceneContext")
public String sceneContextShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Killer Ball Wo Mouichido</p>
*/
@NameInMap("Title")
public String title;
public static CreateTicketShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
CreateTicketShrinkRequest self = new CreateTicketShrinkRequest();
return TeaModel.build(map, self);
}
public CreateTicketShrinkRequest setCustomFields(String customFields) {
this.customFields = customFields;
return this;
}
public String getCustomFields() {
return this.customFields;
}
public CreateTicketShrinkRequest setNotifyShrink(String notifyShrink) {
this.notifyShrink = notifyShrink;
return this;
}
public String getNotifyShrink() {
return this.notifyShrink;
}
public CreateTicketShrinkRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public CreateTicketShrinkRequest setOpenTemplateBizId(String openTemplateBizId) {
this.openTemplateBizId = openTemplateBizId;
return this;
}
public String getOpenTemplateBizId() {
return this.openTemplateBizId;
}
public CreateTicketShrinkRequest setProcessorUserIdsShrink(String processorUserIdsShrink) {
this.processorUserIdsShrink = processorUserIdsShrink;
return this;
}
public String getProcessorUserIdsShrink() {
return this.processorUserIdsShrink;
}
public CreateTicketShrinkRequest setScene(String scene) {
this.scene = scene;
return this;
}
public String getScene() {
return this.scene;
}
public CreateTicketShrinkRequest setSceneContextShrink(String sceneContextShrink) {
this.sceneContextShrink = sceneContextShrink;
return this;
}
public String getSceneContextShrink() {
return this.sceneContextShrink;
}
public CreateTicketShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public CreateTicketShrinkRequest setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateTodoTaskHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public CreateTodoTaskHeadersAccountContext accountContext;
public static CreateTodoTaskHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskHeaders self = new CreateTodoTaskHeaders();
return TeaModel.build(map, self);
}
public CreateTodoTaskHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateTodoTaskHeaders setAccountContext(CreateTodoTaskHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public CreateTodoTaskHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class CreateTodoTaskHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static CreateTodoTaskHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskHeadersAccountContext self = new CreateTodoTaskHeadersAccountContext();
return TeaModel.build(map, self);
}
public CreateTodoTaskHeadersAccountContext 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/CreateTodoTaskRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskRequest extends TeaModel {
@NameInMap("TenantContext")
public CreateTodoTaskRequestTenantContext tenantContext;
@NameInMap("actionList")
public java.util.List<CreateTodoTaskRequestActionList> actionList;
@NameInMap("contentFieldList")
public java.util.List<CreateTodoTaskRequestContentFieldList> contentFieldList;
/**
* <strong>example:</strong>
* <p>PUoiinWIpa2yH2ymhiiGiP6g</p>
*/
@NameInMap("creatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>应用可以调用该接口发起一个钉钉待办任务,该待办事项会出现在钉钉客户端“待办”页面,需要注意的是,通过开放接口发起的待办,目前仅支持直接跳转ISV应用详情页(ISV在调该接口时需传入自身应用详情页链接)。</p>
*/
@NameInMap("description")
public String description;
@NameInMap("detailUrl")
public CreateTodoTaskRequestDetailUrl detailUrl;
/**
* <strong>example:</strong>
* <p>1617675000000</p>
*/
@NameInMap("dueTime")
public Long dueTime;
@NameInMap("executorIds")
public java.util.List<String> executorIds;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("isOnlyShowExecutor")
public Boolean isOnlyShowExecutor;
@NameInMap("notifyConfigs")
public CreateTodoTaskRequestNotifyConfigs notifyConfigs;
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("operatorId")
public String operatorId;
@NameInMap("participantIds")
public java.util.List<String> participantIds;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("priority")
public Integer priority;
@NameInMap("remindNotifyConfigs")
public CreateTodoTaskRequestRemindNotifyConfigs remindNotifyConfigs;
/**
* <strong>example:</strong>
* <p>1754364432000</p>
*/
@NameInMap("reminderTimeStamp")
public Long reminderTimeStamp;
/**
* <strong>example:</strong>
* <p>isv_dingtalkTodo1</p>
*/
@NameInMap("sourceId")
public String sourceId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>接入钉钉待办</p>
*/
@NameInMap("subject")
public String subject;
public static CreateTodoTaskRequest build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequest self = new CreateTodoTaskRequest();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequest setTenantContext(CreateTodoTaskRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public CreateTodoTaskRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public CreateTodoTaskRequest setActionList(java.util.List<CreateTodoTaskRequestActionList> actionList) {
this.actionList = actionList;
return this;
}
public java.util.List<CreateTodoTaskRequestActionList> getActionList() {
return this.actionList;
}
public CreateTodoTaskRequest setContentFieldList(java.util.List<CreateTodoTaskRequestContentFieldList> contentFieldList) {
this.contentFieldList = contentFieldList;
return this;
}
public java.util.List<CreateTodoTaskRequestContentFieldList> getContentFieldList() {
return this.contentFieldList;
}
public CreateTodoTaskRequest setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public CreateTodoTaskRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateTodoTaskRequest setDetailUrl(CreateTodoTaskRequestDetailUrl detailUrl) {
this.detailUrl = detailUrl;
return this;
}
public CreateTodoTaskRequestDetailUrl getDetailUrl() {
return this.detailUrl;
}
public CreateTodoTaskRequest setDueTime(Long dueTime) {
this.dueTime = dueTime;
return this;
}
public Long getDueTime() {
return this.dueTime;
}
public CreateTodoTaskRequest setExecutorIds(java.util.List<String> executorIds) {
this.executorIds = executorIds;
return this;
}
public java.util.List<String> getExecutorIds() {
return this.executorIds;
}
public CreateTodoTaskRequest setIsOnlyShowExecutor(Boolean isOnlyShowExecutor) {
this.isOnlyShowExecutor = isOnlyShowExecutor;
return this;
}
public Boolean getIsOnlyShowExecutor() {
return this.isOnlyShowExecutor;
}
public CreateTodoTaskRequest setNotifyConfigs(CreateTodoTaskRequestNotifyConfigs notifyConfigs) {
this.notifyConfigs = notifyConfigs;
return this;
}
public CreateTodoTaskRequestNotifyConfigs getNotifyConfigs() {
return this.notifyConfigs;
}
public CreateTodoTaskRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public CreateTodoTaskRequest setParticipantIds(java.util.List<String> participantIds) {
this.participantIds = participantIds;
return this;
}
public java.util.List<String> getParticipantIds() {
return this.participantIds;
}
public CreateTodoTaskRequest setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public CreateTodoTaskRequest setRemindNotifyConfigs(CreateTodoTaskRequestRemindNotifyConfigs remindNotifyConfigs) {
this.remindNotifyConfigs = remindNotifyConfigs;
return this;
}
public CreateTodoTaskRequestRemindNotifyConfigs getRemindNotifyConfigs() {
return this.remindNotifyConfigs;
}
public CreateTodoTaskRequest setReminderTimeStamp(Long reminderTimeStamp) {
this.reminderTimeStamp = reminderTimeStamp;
return this;
}
public Long getReminderTimeStamp() {
return this.reminderTimeStamp;
}
public CreateTodoTaskRequest setSourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
public String getSourceId() {
return this.sourceId;
}
public CreateTodoTaskRequest setSubject(String subject) {
this.subject = subject;
return this;
}
public String getSubject() {
return this.subject;
}
public static class CreateTodoTaskRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static CreateTodoTaskRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestTenantContext self = new CreateTodoTaskRequestTenantContext();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestTenantContext setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
}
public static class CreateTodoTaskRequestActionListParam extends TeaModel {
@NameInMap("body")
public String body;
@NameInMap("header")
public java.util.Map<String, String> header;
public static CreateTodoTaskRequestActionListParam build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestActionListParam self = new CreateTodoTaskRequestActionListParam();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestActionListParam setBody(String body) {
this.body = body;
return this;
}
public String getBody() {
return this.body;
}
public CreateTodoTaskRequestActionListParam setHeader(java.util.Map<String, String> header) {
this.header = header;
return this;
}
public java.util.Map<String, String> getHeader() {
return this.header;
}
}
public static class CreateTodoTaskRequestActionList extends TeaModel {
@NameInMap("actionKey")
public String actionKey;
@NameInMap("actionType")
public Integer actionType;
@NameInMap("buttonStyleType")
public Integer buttonStyleType;
@NameInMap("param")
public CreateTodoTaskRequestActionListParam param;
@NameInMap("pcUrl")
public String pcUrl;
@NameInMap("title")
public String title;
@NameInMap("url")
public String url;
public static CreateTodoTaskRequestActionList build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestActionList self = new CreateTodoTaskRequestActionList();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestActionList setActionKey(String actionKey) {
this.actionKey = actionKey;
return this;
}
public String getActionKey() {
return this.actionKey;
}
public CreateTodoTaskRequestActionList setActionType(Integer actionType) {
this.actionType = actionType;
return this;
}
public Integer getActionType() {
return this.actionType;
}
public CreateTodoTaskRequestActionList setButtonStyleType(Integer buttonStyleType) {
this.buttonStyleType = buttonStyleType;
return this;
}
public Integer getButtonStyleType() {
return this.buttonStyleType;
}
public CreateTodoTaskRequestActionList setParam(CreateTodoTaskRequestActionListParam param) {
this.param = param;
return this;
}
public CreateTodoTaskRequestActionListParam getParam() {
return this.param;
}
public CreateTodoTaskRequestActionList setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
public CreateTodoTaskRequestActionList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public CreateTodoTaskRequestActionList setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class CreateTodoTaskRequestContentFieldList extends TeaModel {
/**
* <p>fieldKey</p>
*
* <strong>example:</strong>
* <p>fieldKey</p>
*/
@NameInMap("fieldKey")
public String fieldKey;
/**
* <p>fieldValue</p>
*
* <strong>example:</strong>
* <p>fieldValue</p>
*/
@NameInMap("fieldValue")
public String fieldValue;
public static CreateTodoTaskRequestContentFieldList build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestContentFieldList self = new CreateTodoTaskRequestContentFieldList();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestContentFieldList setFieldKey(String fieldKey) {
this.fieldKey = fieldKey;
return this;
}
public String getFieldKey() {
return this.fieldKey;
}
public CreateTodoTaskRequestContentFieldList setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
return this;
}
public String getFieldValue() {
return this.fieldValue;
}
}
public static class CreateTodoTaskRequestDetailUrl extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://www.dingtalk.com">https://www.dingtalk.com</a></p>
*/
@NameInMap("appUrl")
public String appUrl;
/**
* <strong>example:</strong>
* <p><a href="https://www.dingtalk.com">https://www.dingtalk.com</a></p>
*/
@NameInMap("pcUrl")
public String pcUrl;
public static CreateTodoTaskRequestDetailUrl build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestDetailUrl self = new CreateTodoTaskRequestDetailUrl();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestDetailUrl setAppUrl(String appUrl) {
this.appUrl = appUrl;
return this;
}
public String getAppUrl() {
return this.appUrl;
}
public CreateTodoTaskRequestDetailUrl setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
public static class CreateTodoTaskRequestNotifyConfigs extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("dingNotify")
public String dingNotify;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("sendAssistantChat")
public String sendAssistantChat;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("sendTodoApn")
public String sendTodoApn;
public static CreateTodoTaskRequestNotifyConfigs build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestNotifyConfigs self = new CreateTodoTaskRequestNotifyConfigs();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestNotifyConfigs setDingNotify(String dingNotify) {
this.dingNotify = dingNotify;
return this;
}
public String getDingNotify() {
return this.dingNotify;
}
public CreateTodoTaskRequestNotifyConfigs setSendAssistantChat(String sendAssistantChat) {
this.sendAssistantChat = sendAssistantChat;
return this;
}
public String getSendAssistantChat() {
return this.sendAssistantChat;
}
public CreateTodoTaskRequestNotifyConfigs setSendTodoApn(String sendTodoApn) {
this.sendTodoApn = sendTodoApn;
return this;
}
public String getSendTodoApn() {
return this.sendTodoApn;
}
}
public static class CreateTodoTaskRequestRemindNotifyConfigs extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("dingNotify")
public String dingNotify;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("sendTodoApn")
public String sendTodoApn;
public static CreateTodoTaskRequestRemindNotifyConfigs build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskRequestRemindNotifyConfigs self = new CreateTodoTaskRequestRemindNotifyConfigs();
return TeaModel.build(map, self);
}
public CreateTodoTaskRequestRemindNotifyConfigs setDingNotify(String dingNotify) {
this.dingNotify = dingNotify;
return this;
}
public String getDingNotify() {
return this.dingNotify;
}
public CreateTodoTaskRequestRemindNotifyConfigs setSendTodoApn(String sendTodoApn) {
this.sendTodoApn = sendTodoApn;
return this;
}
public String getSendTodoApn() {
return this.sendTodoApn;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateTodoTaskResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateTodoTaskResponseBody body;
public static CreateTodoTaskResponse build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskResponse self = new CreateTodoTaskResponse();
return TeaModel.build(map, self);
}
public CreateTodoTaskResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateTodoTaskResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateTodoTaskResponse setBody(CreateTodoTaskResponseBody body) {
this.body = body;
return this;
}
public CreateTodoTaskResponseBody 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/CreateTodoTaskResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>isv_dingtalkTodo</p>
*/
@NameInMap("bizTag")
public String bizTag;
@NameInMap("contentFieldList")
public java.util.List<CreateTodoTaskResponseBodyContentFieldList> contentFieldList;
/**
* <strong>example:</strong>
* <p>1617675200000</p>
*/
@NameInMap("createdTime")
public Long createdTime;
/**
* <strong>example:</strong>
* <p>PUoiinWIpa2yH2ymhiiGiP6g</p>
*/
@NameInMap("creatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>应用可以调用该接口发起一个钉钉待办任务,该待办事项会出现在钉钉客户端“待办”页面,需要注意的是,通过开放接口发起的待办,目前仅支持直接跳转ISV应用详情页(ISV在调该接口时需传入自身应用详情页链接)。</p>
*/
@NameInMap("description")
public String description;
@NameInMap("detailUrl")
public CreateTodoTaskResponseBodyDetailUrl detailUrl;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("done")
public Boolean done;
/**
* <strong>example:</strong>
* <p>1617675100000</p>
*/
@NameInMap("dueTime")
public Long dueTime;
@NameInMap("executorIds")
public java.util.List<String> executorIds;
/**
* <strong>example:</strong>
* <p>1617675200000</p>
*/
@NameInMap("finishTime")
public Long finishTime;
/**
* <strong>example:</strong>
* <p>OPJpwtwPVNGIFKURjrzd</p>
*/
@NameInMap("id")
public String id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("isOnlyShowExecutor")
public Boolean isOnlyShowExecutor;
/**
* <strong>example:</strong>
* <p>1617675200000</p>
*/
@NameInMap("modifiedTime")
public Long modifiedTime;
/**
* <strong>example:</strong>
* <p>PUoiinWIpa2yH2ymhiiGiP6g</p>
*/
@NameInMap("modifierId")
public String modifierId;
@NameInMap("notifyConfigs")
public CreateTodoTaskResponseBodyNotifyConfigs notifyConfigs;
@NameInMap("participantIds")
public java.util.List<String> participantIds;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("priority")
public Integer priority;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>isv_dingtalkTodo</p>
*/
@NameInMap("source")
public String source;
/**
* <strong>example:</strong>
* <p>isv_dingtalkTodo1</p>
*/
@NameInMap("sourceId")
public String sourceId;
/**
* <strong>example:</strong>
* <p>1617675000000</p>
*/
@NameInMap("startTime")
public Long startTime;
/**
* <strong>example:</strong>
* <p>接入钉钉待办</p>
*/
@NameInMap("subject")
public String subject;
public static CreateTodoTaskResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskResponseBody self = new CreateTodoTaskResponseBody();
return TeaModel.build(map, self);
}
public CreateTodoTaskResponseBody setBizTag(String bizTag) {
this.bizTag = bizTag;
return this;
}
public String getBizTag() {
return this.bizTag;
}
public CreateTodoTaskResponseBody setContentFieldList(java.util.List<CreateTodoTaskResponseBodyContentFieldList> contentFieldList) {
this.contentFieldList = contentFieldList;
return this;
}
public java.util.List<CreateTodoTaskResponseBodyContentFieldList> getContentFieldList() {
return this.contentFieldList;
}
public CreateTodoTaskResponseBody setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
return this;
}
public Long getCreatedTime() {
return this.createdTime;
}
public CreateTodoTaskResponseBody setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public CreateTodoTaskResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateTodoTaskResponseBody setDetailUrl(CreateTodoTaskResponseBodyDetailUrl detailUrl) {
this.detailUrl = detailUrl;
return this;
}
public CreateTodoTaskResponseBodyDetailUrl getDetailUrl() {
return this.detailUrl;
}
public CreateTodoTaskResponseBody setDone(Boolean done) {
this.done = done;
return this;
}
public Boolean getDone() {
return this.done;
}
public CreateTodoTaskResponseBody setDueTime(Long dueTime) {
this.dueTime = dueTime;
return this;
}
public Long getDueTime() {
return this.dueTime;
}
public CreateTodoTaskResponseBody setExecutorIds(java.util.List<String> executorIds) {
this.executorIds = executorIds;
return this;
}
public java.util.List<String> getExecutorIds() {
return this.executorIds;
}
public CreateTodoTaskResponseBody setFinishTime(Long finishTime) {
this.finishTime = finishTime;
return this;
}
public Long getFinishTime() {
return this.finishTime;
}
public CreateTodoTaskResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public CreateTodoTaskResponseBody setIsOnlyShowExecutor(Boolean isOnlyShowExecutor) {
this.isOnlyShowExecutor = isOnlyShowExecutor;
return this;
}
public Boolean getIsOnlyShowExecutor() {
return this.isOnlyShowExecutor;
}
public CreateTodoTaskResponseBody setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public CreateTodoTaskResponseBody setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public CreateTodoTaskResponseBody setNotifyConfigs(CreateTodoTaskResponseBodyNotifyConfigs notifyConfigs) {
this.notifyConfigs = notifyConfigs;
return this;
}
public CreateTodoTaskResponseBodyNotifyConfigs getNotifyConfigs() {
return this.notifyConfigs;
}
public CreateTodoTaskResponseBody setParticipantIds(java.util.List<String> participantIds) {
this.participantIds = participantIds;
return this;
}
public java.util.List<String> getParticipantIds() {
return this.participantIds;
}
public CreateTodoTaskResponseBody setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public CreateTodoTaskResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateTodoTaskResponseBody setSource(String source) {
this.source = source;
return this;
}
public String getSource() {
return this.source;
}
public CreateTodoTaskResponseBody setSourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
public String getSourceId() {
return this.sourceId;
}
public CreateTodoTaskResponseBody setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public CreateTodoTaskResponseBody setSubject(String subject) {
this.subject = subject;
return this;
}
public String getSubject() {
return this.subject;
}
public static class CreateTodoTaskResponseBodyContentFieldList extends TeaModel {
/**
* <p>fieldKey</p>
*
* <strong>example:</strong>
* <p>fieldKey</p>
*/
@NameInMap("fieldKey")
public String fieldKey;
/**
* <p>fieldValue</p>
*
* <strong>example:</strong>
* <p>fieldValue</p>
*/
@NameInMap("fieldValue")
public String fieldValue;
public static CreateTodoTaskResponseBodyContentFieldList build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskResponseBodyContentFieldList self = new CreateTodoTaskResponseBodyContentFieldList();
return TeaModel.build(map, self);
}
public CreateTodoTaskResponseBodyContentFieldList setFieldKey(String fieldKey) {
this.fieldKey = fieldKey;
return this;
}
public String getFieldKey() {
return this.fieldKey;
}
public CreateTodoTaskResponseBodyContentFieldList setFieldValue(String fieldValue) {
this.fieldValue = fieldValue;
return this;
}
public String getFieldValue() {
return this.fieldValue;
}
}
public static class CreateTodoTaskResponseBodyDetailUrl extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://www.dingtalk.com">https://www.dingtalk.com</a></p>
*/
@NameInMap("appUrl")
public String appUrl;
/**
* <strong>example:</strong>
* <p><a href="https://www.dingtalk.com">https://www.dingtalk.com</a></p>
*/
@NameInMap("pcUrl")
public String pcUrl;
public static CreateTodoTaskResponseBodyDetailUrl build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskResponseBodyDetailUrl self = new CreateTodoTaskResponseBodyDetailUrl();
return TeaModel.build(map, self);
}
public CreateTodoTaskResponseBodyDetailUrl setAppUrl(String appUrl) {
this.appUrl = appUrl;
return this;
}
public String getAppUrl() {
return this.appUrl;
}
public CreateTodoTaskResponseBodyDetailUrl setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
public static class CreateTodoTaskResponseBodyNotifyConfigs extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("dingNotify")
public String dingNotify;
public static CreateTodoTaskResponseBodyNotifyConfigs build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskResponseBodyNotifyConfigs self = new CreateTodoTaskResponseBodyNotifyConfigs();
return TeaModel.build(map, self);
}
public CreateTodoTaskResponseBodyNotifyConfigs setDingNotify(String dingNotify) {
this.dingNotify = dingNotify;
return this;
}
public String getDingNotify() {
return this.dingNotify;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateTodoTaskShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static CreateTodoTaskShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskShrinkHeaders self = new CreateTodoTaskShrinkHeaders();
return TeaModel.build(map, self);
}
public CreateTodoTaskShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateTodoTaskShrinkHeaders 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/CreateTodoTaskShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateTodoTaskShrinkRequest extends TeaModel {
@NameInMap("TenantContext")
public String tenantContextShrink;
@NameInMap("actionList")
public String actionListShrink;
@NameInMap("contentFieldList")
public String contentFieldListShrink;
/**
* <strong>example:</strong>
* <p>PUoiinWIpa2yH2ymhiiGiP6g</p>
*/
@NameInMap("creatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>应用可以调用该接口发起一个钉钉待办任务,该待办事项会出现在钉钉客户端“待办”页面,需要注意的是,通过开放接口发起的待办,目前仅支持直接跳转ISV应用详情页(ISV在调该接口时需传入自身应用详情页链接)。</p>
*/
@NameInMap("description")
public String description;
@NameInMap("detailUrl")
public String detailUrlShrink;
/**
* <strong>example:</strong>
* <p>1617675000000</p>
*/
@NameInMap("dueTime")
public Long dueTime;
@NameInMap("executorIds")
public String executorIdsShrink;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("isOnlyShowExecutor")
public Boolean isOnlyShowExecutor;
@NameInMap("notifyConfigs")
public String notifyConfigsShrink;
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("operatorId")
public String operatorId;
@NameInMap("participantIds")
public String participantIdsShrink;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("priority")
public Integer priority;
@NameInMap("remindNotifyConfigs")
public String remindNotifyConfigsShrink;
/**
* <strong>example:</strong>
* <p>1754364432000</p>
*/
@NameInMap("reminderTimeStamp")
public Long reminderTimeStamp;
/**
* <strong>example:</strong>
* <p>isv_dingtalkTodo1</p>
*/
@NameInMap("sourceId")
public String sourceId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>接入钉钉待办</p>
*/
@NameInMap("subject")
public String subject;
public static CreateTodoTaskShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
CreateTodoTaskShrinkRequest self = new CreateTodoTaskShrinkRequest();
return TeaModel.build(map, self);
}
public CreateTodoTaskShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public CreateTodoTaskShrinkRequest setActionListShrink(String actionListShrink) {
this.actionListShrink = actionListShrink;
return this;
}
public String getActionListShrink() {
return this.actionListShrink;
}
public CreateTodoTaskShrinkRequest setContentFieldListShrink(String contentFieldListShrink) {
this.contentFieldListShrink = contentFieldListShrink;
return this;
}
public String getContentFieldListShrink() {
return this.contentFieldListShrink;
}
public CreateTodoTaskShrinkRequest setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public CreateTodoTaskShrinkRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateTodoTaskShrinkRequest setDetailUrlShrink(String detailUrlShrink) {
this.detailUrlShrink = detailUrlShrink;
return this;
}
public String getDetailUrlShrink() {
return this.detailUrlShrink;
}
public CreateTodoTaskShrinkRequest setDueTime(Long dueTime) {
this.dueTime = dueTime;
return this;
}
public Long getDueTime() {
return this.dueTime;
}
public CreateTodoTaskShrinkRequest setExecutorIdsShrink(String executorIdsShrink) {
this.executorIdsShrink = executorIdsShrink;
return this;
}
public String getExecutorIdsShrink() {
return this.executorIdsShrink;
}
public CreateTodoTaskShrinkRequest setIsOnlyShowExecutor(Boolean isOnlyShowExecutor) {
this.isOnlyShowExecutor = isOnlyShowExecutor;
return this;
}
public Boolean getIsOnlyShowExecutor() {
return this.isOnlyShowExecutor;
}
public CreateTodoTaskShrinkRequest setNotifyConfigsShrink(String notifyConfigsShrink) {
this.notifyConfigsShrink = notifyConfigsShrink;
return this;
}
public String getNotifyConfigsShrink() {
return this.notifyConfigsShrink;
}
public CreateTodoTaskShrinkRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public CreateTodoTaskShrinkRequest setParticipantIdsShrink(String participantIdsShrink) {
this.participantIdsShrink = participantIdsShrink;
return this;
}
public String getParticipantIdsShrink() {
return this.participantIdsShrink;
}
public CreateTodoTaskShrinkRequest setPriority(Integer priority) {
this.priority = priority;
return this;
}
public Integer getPriority() {
return this.priority;
}
public CreateTodoTaskShrinkRequest setRemindNotifyConfigsShrink(String remindNotifyConfigsShrink) {
this.remindNotifyConfigsShrink = remindNotifyConfigsShrink;
return this;
}
public String getRemindNotifyConfigsShrink() {
return this.remindNotifyConfigsShrink;
}
public CreateTodoTaskShrinkRequest setReminderTimeStamp(Long reminderTimeStamp) {
this.reminderTimeStamp = reminderTimeStamp;
return this;
}
public Long getReminderTimeStamp() {
return this.reminderTimeStamp;
}
public CreateTodoTaskShrinkRequest setSourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
public String getSourceId() {
return this.sourceId;
}
public CreateTodoTaskShrinkRequest setSubject(String subject) {
this.subject = subject;
return this;
}
public String getSubject() {
return this.subject;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateVideoConferenceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public CreateVideoConferenceHeadersAccountContext accountContext;
public static CreateVideoConferenceHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceHeaders self = new CreateVideoConferenceHeaders();
return TeaModel.build(map, self);
}
public CreateVideoConferenceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateVideoConferenceHeaders setAccountContext(CreateVideoConferenceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public CreateVideoConferenceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class CreateVideoConferenceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("accountId")
public String accountId;
public static CreateVideoConferenceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceHeadersAccountContext self = new CreateVideoConferenceHeadersAccountContext();
return TeaModel.build(map, self);
}
public CreateVideoConferenceHeadersAccountContext 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/CreateVideoConferenceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ConfTitle")
public String confTitle;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("InviteCaller")
public Boolean inviteCaller;
@NameInMap("InviteUserIds")
public java.util.List<String> inviteUserIds;
public static CreateVideoConferenceRequest build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceRequest self = new CreateVideoConferenceRequest();
return TeaModel.build(map, self);
}
public CreateVideoConferenceRequest setConfTitle(String confTitle) {
this.confTitle = confTitle;
return this;
}
public String getConfTitle() {
return this.confTitle;
}
public CreateVideoConferenceRequest setInviteCaller(Boolean inviteCaller) {
this.inviteCaller = inviteCaller;
return this;
}
public Boolean getInviteCaller() {
return this.inviteCaller;
}
public CreateVideoConferenceRequest setInviteUserIds(java.util.List<String> inviteUserIds) {
this.inviteUserIds = inviteUserIds;
return this;
}
public java.util.List<String> getInviteUserIds() {
return this.inviteUserIds;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateVideoConferenceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateVideoConferenceResponseBody body;
public static CreateVideoConferenceResponse build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceResponse self = new CreateVideoConferenceResponse();
return TeaModel.build(map, self);
}
public CreateVideoConferenceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateVideoConferenceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateVideoConferenceResponse setBody(CreateVideoConferenceResponseBody body) {
this.body = body;
return this;
}
public CreateVideoConferenceResponseBody 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/CreateVideoConferenceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>607452e01401526ee39609e1</p>
*/
@NameInMap("conferenceId")
public String conferenceId;
/**
* <strong>example:</strong>
* <p>1151302294</p>
*/
@NameInMap("conferencePassword")
public String conferencePassword;
/**
* <strong>example:</strong>
* <p><a href="https://pre-meeting.dingtalk.com/app?roomCode=68550708396&token=1_59209c43-431c-4e57-a0f8-11bebdb3db7f">https://pre-meeting.dingtalk.com/app?roomCode=68550708396&token=1_59209c43-431c-4e57-a0f8-11bebdb3db7f</a></p>
*/
@NameInMap("externalLinkUrl")
public String externalLinkUrl;
/**
* <strong>example:</strong>
* <p>2142817614</p>
*/
@NameInMap("hostPassword")
public String hostPassword;
@NameInMap("phoneNumbers")
public java.util.List<String> phoneNumbers;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>3032809F-8C14-57E2-9B76-7AC2134FE3C8</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("roomCode")
public String roomCode;
public static CreateVideoConferenceResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceResponseBody self = new CreateVideoConferenceResponseBody();
return TeaModel.build(map, self);
}
public CreateVideoConferenceResponseBody setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public CreateVideoConferenceResponseBody setConferencePassword(String conferencePassword) {
this.conferencePassword = conferencePassword;
return this;
}
public String getConferencePassword() {
return this.conferencePassword;
}
public CreateVideoConferenceResponseBody setExternalLinkUrl(String externalLinkUrl) {
this.externalLinkUrl = externalLinkUrl;
return this;
}
public String getExternalLinkUrl() {
return this.externalLinkUrl;
}
public CreateVideoConferenceResponseBody setHostPassword(String hostPassword) {
this.hostPassword = hostPassword;
return this;
}
public String getHostPassword() {
return this.hostPassword;
}
public CreateVideoConferenceResponseBody setPhoneNumbers(java.util.List<String> phoneNumbers) {
this.phoneNumbers = phoneNumbers;
return this;
}
public java.util.List<String> getPhoneNumbers() {
return this.phoneNumbers;
}
public CreateVideoConferenceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateVideoConferenceResponseBody setRoomCode(String roomCode) {
this.roomCode = roomCode;
return this;
}
public String getRoomCode() {
return this.roomCode;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateVideoConferenceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static CreateVideoConferenceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceShrinkHeaders self = new CreateVideoConferenceShrinkHeaders();
return TeaModel.build(map, self);
}
public CreateVideoConferenceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateVideoConferenceShrinkHeaders 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/CreateVideoConferenceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateVideoConferenceShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("ConfTitle")
public String confTitle;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("InviteCaller")
public Boolean inviteCaller;
@NameInMap("InviteUserIds")
public String inviteUserIdsShrink;
public static CreateVideoConferenceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
CreateVideoConferenceShrinkRequest self = new CreateVideoConferenceShrinkRequest();
return TeaModel.build(map, self);
}
public CreateVideoConferenceShrinkRequest setConfTitle(String confTitle) {
this.confTitle = confTitle;
return this;
}
public String getConfTitle() {
return this.confTitle;
}
public CreateVideoConferenceShrinkRequest setInviteCaller(Boolean inviteCaller) {
this.inviteCaller = inviteCaller;
return this;
}
public Boolean getInviteCaller() {
return this.inviteCaller;
}
public CreateVideoConferenceShrinkRequest setInviteUserIdsShrink(String inviteUserIdsShrink) {
this.inviteUserIdsShrink = inviteUserIdsShrink;
return this;
}
public String getInviteUserIdsShrink() {
return this.inviteUserIdsShrink;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/CreateWorkspaceDocHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public CreateWorkspaceDocHeadersAccountContext accountContext;
public static CreateWorkspaceDocHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocHeaders self = new CreateWorkspaceDocHeaders();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateWorkspaceDocHeaders setAccountContext(CreateWorkspaceDocHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public CreateWorkspaceDocHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class CreateWorkspaceDocHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static CreateWorkspaceDocHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocHeadersAccountContext self = new CreateWorkspaceDocHeadersAccountContext();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocHeadersAccountContext 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/CreateWorkspaceDocRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DOC</p>
*/
@NameInMap("DocType")
public String docType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>测试文档</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>YRBGv0Ye</p>
*/
@NameInMap("ParentNodeId")
public String parentNodeId;
/**
* <strong>example:</strong>
* <p>123243</p>
*/
@NameInMap("TemplateId")
public String templateId;
/**
* <strong>example:</strong>
* <p>team_template</p>
*/
@NameInMap("TemplateType")
public String templateType;
@NameInMap("TenantContext")
public CreateWorkspaceDocRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static CreateWorkspaceDocRequest build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocRequest self = new CreateWorkspaceDocRequest();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocRequest setDocType(String docType) {
this.docType = docType;
return this;
}
public String getDocType() {
return this.docType;
}
public CreateWorkspaceDocRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceDocRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public CreateWorkspaceDocRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public CreateWorkspaceDocRequest setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
public CreateWorkspaceDocRequest setTenantContext(CreateWorkspaceDocRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public CreateWorkspaceDocRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public CreateWorkspaceDocRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public static class CreateWorkspaceDocRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static CreateWorkspaceDocRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocRequestTenantContext self = new CreateWorkspaceDocRequestTenantContext();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocRequestTenantContext 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/CreateWorkspaceDocResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateWorkspaceDocResponseBody body;
public static CreateWorkspaceDocResponse build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocResponse self = new CreateWorkspaceDocResponse();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateWorkspaceDocResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateWorkspaceDocResponse setBody(CreateWorkspaceDocResponseBody body) {
this.body = body;
return this;
}
public CreateWorkspaceDocResponseBody 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/CreateWorkspaceDocResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>YRBcvy</p>
*/
@NameInMap("dentryUuid")
public String dentryUuid;
/**
* <strong>example:</strong>
* <p>QoJGq7xxx</p>
*/
@NameInMap("docKey")
public String docKey;
/**
* <strong>example:</strong>
* <p>YRBGv0Ye</p>
*/
@NameInMap("nodeId")
public String nodeId;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p><a href="https://xxx/workspaceId/docs/nodeId">https://xxx/workspaceId/docs/nodeId</a></p>
*/
@NameInMap("url")
public String url;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
/**
* <strong>example:</strong>
* <p>YRBGvy</p>
*/
@NameInMap("workspaceId")
public String workspaceId;
public static CreateWorkspaceDocResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocResponseBody self = new CreateWorkspaceDocResponseBody();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocResponseBody setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public CreateWorkspaceDocResponseBody setDocKey(String docKey) {
this.docKey = docKey;
return this;
}
public String getDocKey() {
return this.docKey;
}
public CreateWorkspaceDocResponseBody setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public CreateWorkspaceDocResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateWorkspaceDocResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public CreateWorkspaceDocResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public CreateWorkspaceDocResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public CreateWorkspaceDocResponseBody 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/CreateWorkspaceDocShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static CreateWorkspaceDocShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocShrinkHeaders self = new CreateWorkspaceDocShrinkHeaders();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateWorkspaceDocShrinkHeaders 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/CreateWorkspaceDocShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceDocShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DOC</p>
*/
@NameInMap("DocType")
public String docType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>测试文档</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>YRBGv0Ye</p>
*/
@NameInMap("ParentNodeId")
public String parentNodeId;
/**
* <strong>example:</strong>
* <p>123243</p>
*/
@NameInMap("TemplateId")
public String templateId;
/**
* <strong>example:</strong>
* <p>team_template</p>
*/
@NameInMap("TemplateType")
public String templateType;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static CreateWorkspaceDocShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceDocShrinkRequest self = new CreateWorkspaceDocShrinkRequest();
return TeaModel.build(map, self);
}
public CreateWorkspaceDocShrinkRequest setDocType(String docType) {
this.docType = docType;
return this;
}
public String getDocType() {
return this.docType;
}
public CreateWorkspaceDocShrinkRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceDocShrinkRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public CreateWorkspaceDocShrinkRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public CreateWorkspaceDocShrinkRequest setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
public CreateWorkspaceDocShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public CreateWorkspaceDocShrinkRequest 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/CreateWorkspaceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public CreateWorkspaceHeadersAccountContext accountContext;
public static CreateWorkspaceHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceHeaders self = new CreateWorkspaceHeaders();
return TeaModel.build(map, self);
}
public CreateWorkspaceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateWorkspaceHeaders setAccountContext(CreateWorkspaceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public CreateWorkspaceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class CreateWorkspaceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static CreateWorkspaceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceHeadersAccountContext self = new CreateWorkspaceHeadersAccountContext();
return TeaModel.build(map, self);
}
public CreateWorkspaceHeadersAccountContext 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/CreateWorkspaceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceRequest extends TeaModel {
@NameInMap("Description")
public String description;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Name")
public String name;
@NameInMap("TenantContext")
public CreateWorkspaceRequestTenantContext tenantContext;
public static CreateWorkspaceRequest build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceRequest self = new CreateWorkspaceRequest();
return TeaModel.build(map, self);
}
public CreateWorkspaceRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateWorkspaceRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceRequest setTenantContext(CreateWorkspaceRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public CreateWorkspaceRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class CreateWorkspaceRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static CreateWorkspaceRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceRequestTenantContext self = new CreateWorkspaceRequestTenantContext();
return TeaModel.build(map, self);
}
public CreateWorkspaceRequestTenantContext 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/CreateWorkspaceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public CreateWorkspaceResponseBody body;
public static CreateWorkspaceResponse build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceResponse self = new CreateWorkspaceResponse();
return TeaModel.build(map, self);
}
public CreateWorkspaceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public CreateWorkspaceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public CreateWorkspaceResponse setBody(CreateWorkspaceResponseBody body) {
this.body = body;
return this;
}
public CreateWorkspaceResponseBody 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/CreateWorkspaceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>知识库描述</p>
*/
@NameInMap("description")
public String description;
/**
* <strong>example:</strong>
* <p>知识库</p>
*/
@NameInMap("name")
public String name;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p><a href="https://xxx/workspaceId">https://xxx/workspaceId</a></p>
*/
@NameInMap("url")
public String url;
/**
* <strong>example:</strong>
* <p>YRBGvyxxxx</p>
*/
@NameInMap("workspaceId")
public String workspaceId;
public static CreateWorkspaceResponseBody build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceResponseBody self = new CreateWorkspaceResponseBody();
return TeaModel.build(map, self);
}
public CreateWorkspaceResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateWorkspaceResponseBody setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public CreateWorkspaceResponseBody setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public CreateWorkspaceResponseBody 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/CreateWorkspaceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static CreateWorkspaceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceShrinkHeaders self = new CreateWorkspaceShrinkHeaders();
return TeaModel.build(map, self);
}
public CreateWorkspaceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public CreateWorkspaceShrinkHeaders 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/CreateWorkspaceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class CreateWorkspaceShrinkRequest extends TeaModel {
@NameInMap("Description")
public String description;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Name")
public String name;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static CreateWorkspaceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
CreateWorkspaceShrinkRequest self = new CreateWorkspaceShrinkRequest();
return TeaModel.build(map, self);
}
public CreateWorkspaceShrinkRequest setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public CreateWorkspaceShrinkRequest setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public CreateWorkspaceShrinkRequest 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/DeleteAlidingAssistantHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteAlidingAssistantHeadersAccountContext accountContext;
public static DeleteAlidingAssistantHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantHeaders self = new DeleteAlidingAssistantHeaders();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteAlidingAssistantHeaders setAccountContext(DeleteAlidingAssistantHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteAlidingAssistantHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteAlidingAssistantHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteAlidingAssistantHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantHeadersAccountContext self = new DeleteAlidingAssistantHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantHeadersAccountContext 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/DeleteAlidingAssistantRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1234</p>
*/
@NameInMap("AssistantId")
public String assistantId;
@NameInMap("TenantContext")
public DeleteAlidingAssistantRequestTenantContext tenantContext;
public static DeleteAlidingAssistantRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantRequest self = new DeleteAlidingAssistantRequest();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public DeleteAlidingAssistantRequest setTenantContext(DeleteAlidingAssistantRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteAlidingAssistantRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteAlidingAssistantRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteAlidingAssistantRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantRequestTenantContext self = new DeleteAlidingAssistantRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantRequestTenantContext 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/DeleteAlidingAssistantResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteAlidingAssistantResponseBody body;
public static DeleteAlidingAssistantResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantResponse self = new DeleteAlidingAssistantResponse();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteAlidingAssistantResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteAlidingAssistantResponse setBody(DeleteAlidingAssistantResponseBody body) {
this.body = body;
return this;
}
public DeleteAlidingAssistantResponseBody 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/DeleteAlidingAssistantResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantResponseBody 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 DeleteAlidingAssistantResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantResponseBody self = new DeleteAlidingAssistantResponseBody();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteAlidingAssistantResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DeleteAlidingAssistantResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteAlidingAssistantResponseBody 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/DeleteAlidingAssistantShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteAlidingAssistantShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantShrinkHeaders self = new DeleteAlidingAssistantShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteAlidingAssistantShrinkHeaders 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/DeleteAlidingAssistantShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteAlidingAssistantShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1234</p>
*/
@NameInMap("AssistantId")
public String assistantId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteAlidingAssistantShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteAlidingAssistantShrinkRequest self = new DeleteAlidingAssistantShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteAlidingAssistantShrinkRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public DeleteAlidingAssistantShrinkRequest 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/DeleteColumnsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteColumnsHeadersAccountContext accountContext;
public static DeleteColumnsHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsHeaders self = new DeleteColumnsHeaders();
return TeaModel.build(map, self);
}
public DeleteColumnsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteColumnsHeaders setAccountContext(DeleteColumnsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteColumnsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteColumnsHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteColumnsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsHeadersAccountContext self = new DeleteColumnsHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteColumnsHeadersAccountContext 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/DeleteColumnsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Column")
public Long column;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("ColumnCount")
public Long columnCount;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("SheetId")
public String sheetId;
@NameInMap("TenantContext")
public DeleteColumnsRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static DeleteColumnsRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsRequest self = new DeleteColumnsRequest();
return TeaModel.build(map, self);
}
public DeleteColumnsRequest setColumn(Long column) {
this.column = column;
return this;
}
public Long getColumn() {
return this.column;
}
public DeleteColumnsRequest setColumnCount(Long columnCount) {
this.columnCount = columnCount;
return this;
}
public Long getColumnCount() {
return this.columnCount;
}
public DeleteColumnsRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteColumnsRequest setTenantContext(DeleteColumnsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteColumnsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteColumnsRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
public static class DeleteColumnsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteColumnsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsRequestTenantContext self = new DeleteColumnsRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteColumnsRequestTenantContext 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/DeleteColumnsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteColumnsResponseBody body;
public static DeleteColumnsResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsResponse self = new DeleteColumnsResponse();
return TeaModel.build(map, self);
}
public DeleteColumnsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteColumnsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteColumnsResponse setBody(DeleteColumnsResponseBody body) {
this.body = body;
return this;
}
public DeleteColumnsResponseBody 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/DeleteColumnsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsResponseBody 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 DeleteColumnsResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsResponseBody self = new DeleteColumnsResponseBody();
return TeaModel.build(map, self);
}
public DeleteColumnsResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public DeleteColumnsResponseBody 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/DeleteColumnsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteColumnsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsShrinkHeaders self = new DeleteColumnsShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteColumnsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteColumnsShrinkHeaders 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/DeleteColumnsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteColumnsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Column")
public Long column;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("ColumnCount")
public Long columnCount;
/**
* <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 DeleteColumnsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteColumnsShrinkRequest self = new DeleteColumnsShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteColumnsShrinkRequest setColumn(Long column) {
this.column = column;
return this;
}
public Long getColumn() {
return this.column;
}
public DeleteColumnsShrinkRequest setColumnCount(Long columnCount) {
this.columnCount = columnCount;
return this;
}
public Long getColumnCount() {
return this.columnCount;
}
public DeleteColumnsShrinkRequest setSheetId(String sheetId) {
this.sheetId = sheetId;
return this;
}
public String getSheetId() {
return this.sheetId;
}
public DeleteColumnsShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteColumnsShrinkRequest 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/DeleteDentryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteDentryHeadersAccountContext accountContext;
public static DeleteDentryHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryHeaders self = new DeleteDentryHeaders();
return TeaModel.build(map, self);
}
public DeleteDentryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteDentryHeaders setAccountContext(DeleteDentryHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteDentryHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteDentryHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteDentryHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryHeadersAccountContext self = new DeleteDentryHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteDentryHeadersAccountContext 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/DeleteDentryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>b9XJlZ44W3NeDGyA</p>
*/
@NameInMap("DentryId")
public String dentryId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>nb9XJx4EPx16QGyA</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public DeleteDentryRequestTenantContext tenantContext;
@NameInMap("ToRecycleBin")
public Boolean toRecycleBin;
public static DeleteDentryRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryRequest self = new DeleteDentryRequest();
return TeaModel.build(map, self);
}
public DeleteDentryRequest setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public DeleteDentryRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeleteDentryRequest setTenantContext(DeleteDentryRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteDentryRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public DeleteDentryRequest setToRecycleBin(Boolean toRecycleBin) {
this.toRecycleBin = toRecycleBin;
return this;
}
public Boolean getToRecycleBin() {
return this.toRecycleBin;
}
public static class DeleteDentryRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteDentryRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryRequestTenantContext self = new DeleteDentryRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteDentryRequestTenantContext 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/DeleteDentryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteDentryResponseBody body;
public static DeleteDentryResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryResponse self = new DeleteDentryResponse();
return TeaModel.build(map, self);
}
public DeleteDentryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteDentryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteDentryResponse setBody(DeleteDentryResponseBody body) {
this.body = body;
return this;
}
public DeleteDentryResponseBody 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/DeleteDentryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryResponseBody extends TeaModel {
@NameInMap("async")
public Boolean async;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>task123abc</p>
*/
@NameInMap("taskId")
public String taskId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static DeleteDentryResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryResponseBody self = new DeleteDentryResponseBody();
return TeaModel.build(map, self);
}
public DeleteDentryResponseBody setAsync(Boolean async) {
this.async = async;
return this;
}
public Boolean getAsync() {
return this.async;
}
public DeleteDentryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteDentryResponseBody setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
public DeleteDentryResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteDentryResponseBody 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/DeleteDentryShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteDentryShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryShrinkHeaders self = new DeleteDentryShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteDentryShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteDentryShrinkHeaders 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/DeleteDentryShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDentryShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>b9XJlZ44W3NeDGyA</p>
*/
@NameInMap("DentryId")
public String dentryId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>nb9XJx4EPx16QGyA</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public String tenantContextShrink;
@NameInMap("ToRecycleBin")
public Boolean toRecycleBin;
public static DeleteDentryShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteDentryShrinkRequest self = new DeleteDentryShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteDentryShrinkRequest setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public DeleteDentryShrinkRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeleteDentryShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public DeleteDentryShrinkRequest setToRecycleBin(Boolean toRecycleBin) {
this.toRecycleBin = toRecycleBin;
return this;
}
public Boolean getToRecycleBin() {
return this.toRecycleBin;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteDriveSpaceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AccountContext")
public DeleteDriveSpaceHeadersAccountContext accountContext;
public static DeleteDriveSpaceHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceHeaders self = new DeleteDriveSpaceHeaders();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteDriveSpaceHeaders setAccountContext(DeleteDriveSpaceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteDriveSpaceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteDriveSpaceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteDriveSpaceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceHeadersAccountContext self = new DeleteDriveSpaceHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceHeadersAccountContext 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/DeleteDriveSpaceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public DeleteDriveSpaceRequestTenantContext tenantContext;
public static DeleteDriveSpaceRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceRequest self = new DeleteDriveSpaceRequest();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeleteDriveSpaceRequest setTenantContext(DeleteDriveSpaceRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteDriveSpaceRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteDriveSpaceRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteDriveSpaceRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceRequestTenantContext self = new DeleteDriveSpaceRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceRequestTenantContext 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/DeleteDriveSpaceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteDriveSpaceResponseBody body;
public static DeleteDriveSpaceResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceResponse self = new DeleteDriveSpaceResponse();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteDriveSpaceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteDriveSpaceResponse setBody(DeleteDriveSpaceResponseBody body) {
this.body = body;
return this;
}
public DeleteDriveSpaceResponseBody 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/DeleteDriveSpaceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceResponseBody 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 DeleteDriveSpaceResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceResponseBody self = new DeleteDriveSpaceResponseBody();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteDriveSpaceResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteDriveSpaceResponseBody 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/DeleteDriveSpaceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteDriveSpaceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceShrinkHeaders self = new DeleteDriveSpaceShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteDriveSpaceShrinkHeaders 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/DeleteDriveSpaceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteDriveSpaceShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteDriveSpaceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteDriveSpaceShrinkRequest self = new DeleteDriveSpaceShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteDriveSpaceShrinkRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public DeleteDriveSpaceShrinkRequest 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/DeleteEventHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteEventHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteEventHeadersAccountContext accountContext;
public static DeleteEventHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteEventHeaders self = new DeleteEventHeaders();
return TeaModel.build(map, self);
}
public DeleteEventHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteEventHeaders setAccountContext(DeleteEventHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteEventHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteEventHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteEventHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteEventHeadersAccountContext self = new DeleteEventHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteEventHeadersAccountContext 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/DeleteEventRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteEventRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>primary</p>
*/
@NameInMap("CalendarId")
public String calendarId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>iiiP35sJadba8aBSgjrwPRKgiEiF</p>
*/
@NameInMap("EventId")
public String eventId;
@NameInMap("pushNotification")
public Boolean pushNotification;
public static DeleteEventRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteEventRequest self = new DeleteEventRequest();
return TeaModel.build(map, self);
}
public DeleteEventRequest setCalendarId(String calendarId) {
this.calendarId = calendarId;
return this;
}
public String getCalendarId() {
return this.calendarId;
}
public DeleteEventRequest setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
public DeleteEventRequest setPushNotification(Boolean pushNotification) {
this.pushNotification = pushNotification;
return this;
}
public Boolean getPushNotification() {
return this.pushNotification;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/DeleteEventResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteEventResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteEventResponseBody body;
public static DeleteEventResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteEventResponse self = new DeleteEventResponse();
return TeaModel.build(map, self);
}
public DeleteEventResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteEventResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteEventResponse setBody(DeleteEventResponseBody body) {
this.body = body;
return this;
}
public DeleteEventResponseBody 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/DeleteEventResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteEventResponseBody extends TeaModel {
@NameInMap("content")
public DeleteEventResponseBodyContent content;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("errorCode")
public String errorCode;
@NameInMap("errorCtx")
public java.util.Map<String, ?> errorCtx;
/**
* <strong>example:</strong>
* <p>""</p>
*/
@NameInMap("errorMsg")
public String errorMsg;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("httpStatusCode")
public Integer httpStatusCode;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>4248DCC9-785F-5A14-8BE0-830FD52E1261</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>True</p>
*/
@NameInMap("success")
public Boolean success;
public static DeleteEventResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteEventResponseBody self = new DeleteEventResponseBody();
return TeaModel.build(map, self);
}
public DeleteEventResponseBody setContent(DeleteEventResponseBodyContent content) {
this.content = content;
return this;
}
public DeleteEventResponseBodyContent getContent() {
return this.content;
}
public DeleteEventResponseBody setErrorCode(String errorCode) {
this.errorCode = errorCode;
return this;
}
public String getErrorCode() {
return this.errorCode;
}
public DeleteEventResponseBody setErrorCtx(java.util.Map<String, ?> errorCtx) {
this.errorCtx = errorCtx;
return this;
}
public java.util.Map<String, ?> getErrorCtx() {
return this.errorCtx;
}
public DeleteEventResponseBody setErrorMsg(String errorMsg) {
this.errorMsg = errorMsg;
return this;
}
public String getErrorMsg() {
return this.errorMsg;
}
public DeleteEventResponseBody setHttpStatusCode(Integer httpStatusCode) {
this.httpStatusCode = httpStatusCode;
return this;
}
public Integer getHttpStatusCode() {
return this.httpStatusCode;
}
public DeleteEventResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteEventResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public static class DeleteEventResponseBodyContent extends TeaModel {
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("data")
public Object data;
public static DeleteEventResponseBodyContent build(java.util.Map<String, ?> map) throws Exception {
DeleteEventResponseBodyContent self = new DeleteEventResponseBodyContent();
return TeaModel.build(map, self);
}
public DeleteEventResponseBodyContent setData(Object data) {
this.data = data;
return this;
}
public Object 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/DeleteEventShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteEventShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteEventShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteEventShrinkHeaders self = new DeleteEventShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteEventShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteEventShrinkHeaders 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/DeleteFormDataHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteFormDataHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteFormDataHeadersAccountContext accountContext;
public static DeleteFormDataHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataHeaders self = new DeleteFormDataHeaders();
return TeaModel.build(map, self);
}
public DeleteFormDataHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteFormDataHeaders setAccountContext(DeleteFormDataHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteFormDataHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteFormDataHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteFormDataHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataHeadersAccountContext self = new DeleteFormDataHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteFormDataHeadersAccountContext 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/DeleteFormDataRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteFormDataRequest 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>FORM_INST_12345</p>
*/
@NameInMap("FormInstanceId")
public String formInstanceId;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static DeleteFormDataRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataRequest self = new DeleteFormDataRequest();
return TeaModel.build(map, self);
}
public DeleteFormDataRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public DeleteFormDataRequest setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
public DeleteFormDataRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public DeleteFormDataRequest 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/DeleteFormDataResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteFormDataResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteFormDataResponseBody body;
public static DeleteFormDataResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataResponse self = new DeleteFormDataResponse();
return TeaModel.build(map, self);
}
public DeleteFormDataResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteFormDataResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteFormDataResponse setBody(DeleteFormDataResponseBody body) {
this.body = body;
return this;
}
public DeleteFormDataResponseBody 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/DeleteFormDataResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteFormDataResponseBody 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 DeleteFormDataResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataResponseBody self = new DeleteFormDataResponseBody();
return TeaModel.build(map, self);
}
public DeleteFormDataResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteFormDataResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteFormDataResponseBody 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/DeleteFormDataShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteFormDataShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteFormDataShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteFormDataShrinkHeaders self = new DeleteFormDataShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteFormDataShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteFormDataShrinkHeaders 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/DeleteInstanceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteInstanceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteInstanceHeadersAccountContext accountContext;
public static DeleteInstanceHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceHeaders self = new DeleteInstanceHeaders();
return TeaModel.build(map, self);
}
public DeleteInstanceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteInstanceHeaders setAccountContext(DeleteInstanceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteInstanceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteInstanceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteInstanceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceHeadersAccountContext self = new DeleteInstanceHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteInstanceHeadersAccountContext 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/DeleteInstanceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteInstanceRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBKTxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>f30233fb-72xxx</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static DeleteInstanceRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceRequest self = new DeleteInstanceRequest();
return TeaModel.build(map, self);
}
public DeleteInstanceRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public DeleteInstanceRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public DeleteInstanceRequest setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public DeleteInstanceRequest 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/DeleteInstanceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteInstanceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteInstanceResponseBody body;
public static DeleteInstanceResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceResponse self = new DeleteInstanceResponse();
return TeaModel.build(map, self);
}
public DeleteInstanceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteInstanceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteInstanceResponse setBody(DeleteInstanceResponseBody body) {
this.body = body;
return this;
}
public DeleteInstanceResponseBody 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/DeleteInstanceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteInstanceResponseBody 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 DeleteInstanceResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceResponseBody self = new DeleteInstanceResponseBody();
return TeaModel.build(map, self);
}
public DeleteInstanceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteInstanceResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteInstanceResponseBody 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/DeleteInstanceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteInstanceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteInstanceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteInstanceShrinkHeaders self = new DeleteInstanceShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteInstanceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteInstanceShrinkHeaders 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/DeleteLiveHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteLiveHeadersAccountContext accountContext;
public static DeleteLiveHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveHeaders self = new DeleteLiveHeaders();
return TeaModel.build(map, self);
}
public DeleteLiveHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteLiveHeaders setAccountContext(DeleteLiveHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteLiveHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteLiveHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteLiveHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveHeadersAccountContext self = new DeleteLiveHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteLiveHeadersAccountContext 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/DeleteLiveRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4d38xxxxx</p>
*/
@NameInMap("LiveId")
public String liveId;
@NameInMap("TenantContext")
public DeleteLiveRequestTenantContext tenantContext;
public static DeleteLiveRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveRequest self = new DeleteLiveRequest();
return TeaModel.build(map, self);
}
public DeleteLiveRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public DeleteLiveRequest setTenantContext(DeleteLiveRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteLiveRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteLiveRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteLiveRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveRequestTenantContext self = new DeleteLiveRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteLiveRequestTenantContext 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/DeleteLiveResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteLiveResponseBody body;
public static DeleteLiveResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveResponse self = new DeleteLiveResponse();
return TeaModel.build(map, self);
}
public DeleteLiveResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteLiveResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteLiveResponse setBody(DeleteLiveResponseBody body) {
this.body = body;
return this;
}
public DeleteLiveResponseBody 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/DeleteLiveResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveResponseBody 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 DeleteLiveResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveResponseBody self = new DeleteLiveResponseBody();
return TeaModel.build(map, self);
}
public DeleteLiveResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteLiveResponseBody 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/DeleteLiveShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteLiveShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveShrinkHeaders self = new DeleteLiveShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteLiveShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteLiveShrinkHeaders 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/DeleteLiveShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteLiveShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>4d38xxxxx</p>
*/
@NameInMap("LiveId")
public String liveId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteLiveShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteLiveShrinkRequest self = new DeleteLiveShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteLiveShrinkRequest setLiveId(String liveId) {
this.liveId = liveId;
return this;
}
public String getLiveId() {
return this.liveId;
}
public DeleteLiveShrinkRequest 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/DeleteMeetingRoomGroupHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteMeetingRoomGroupHeadersAccountContext accountContext;
public static DeleteMeetingRoomGroupHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupHeaders self = new DeleteMeetingRoomGroupHeaders();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMeetingRoomGroupHeaders setAccountContext(DeleteMeetingRoomGroupHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteMeetingRoomGroupHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteMeetingRoomGroupHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteMeetingRoomGroupHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupHeadersAccountContext self = new DeleteMeetingRoomGroupHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupHeadersAccountContext 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/DeleteMeetingRoomGroupRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>172</p>
*/
@NameInMap("GroupId")
public String groupId;
@NameInMap("TenantContext")
public DeleteMeetingRoomGroupRequestTenantContext tenantContext;
public static DeleteMeetingRoomGroupRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupRequest self = new DeleteMeetingRoomGroupRequest();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupRequest setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public DeleteMeetingRoomGroupRequest setTenantContext(DeleteMeetingRoomGroupRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteMeetingRoomGroupRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteMeetingRoomGroupRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteMeetingRoomGroupRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupRequestTenantContext self = new DeleteMeetingRoomGroupRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupRequestTenantContext 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/DeleteMeetingRoomGroupResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteMeetingRoomGroupResponseBody body;
public static DeleteMeetingRoomGroupResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupResponse self = new DeleteMeetingRoomGroupResponse();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteMeetingRoomGroupResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteMeetingRoomGroupResponse setBody(DeleteMeetingRoomGroupResponseBody body) {
this.body = body;
return this;
}
public DeleteMeetingRoomGroupResponseBody 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/DeleteMeetingRoomGroupResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupResponseBody 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 DeleteMeetingRoomGroupResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupResponseBody self = new DeleteMeetingRoomGroupResponseBody();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteMeetingRoomGroupResponseBody 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/DeleteMeetingRoomGroupShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteMeetingRoomGroupShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupShrinkHeaders self = new DeleteMeetingRoomGroupShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMeetingRoomGroupShrinkHeaders 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/DeleteMeetingRoomGroupShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomGroupShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>172</p>
*/
@NameInMap("GroupId")
public String groupId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteMeetingRoomGroupShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomGroupShrinkRequest self = new DeleteMeetingRoomGroupShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomGroupShrinkRequest setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
public DeleteMeetingRoomGroupShrinkRequest 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/DeleteMeetingRoomHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteMeetingRoomHeadersAccountContext accountContext;
public static DeleteMeetingRoomHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomHeaders self = new DeleteMeetingRoomHeaders();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMeetingRoomHeaders setAccountContext(DeleteMeetingRoomHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteMeetingRoomHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteMeetingRoomHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteMeetingRoomHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomHeadersAccountContext self = new DeleteMeetingRoomHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomHeadersAccountContext 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/DeleteMeetingRoomRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0ffb7xxxxx</p>
*/
@NameInMap("RoomId")
public String roomId;
@NameInMap("TenantContext")
public DeleteMeetingRoomRequestTenantContext tenantContext;
public static DeleteMeetingRoomRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomRequest self = new DeleteMeetingRoomRequest();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomRequest setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
public DeleteMeetingRoomRequest setTenantContext(DeleteMeetingRoomRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteMeetingRoomRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteMeetingRoomRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteMeetingRoomRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomRequestTenantContext self = new DeleteMeetingRoomRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomRequestTenantContext 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/DeleteMeetingRoomResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteMeetingRoomResponseBody body;
public static DeleteMeetingRoomResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomResponse self = new DeleteMeetingRoomResponse();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteMeetingRoomResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteMeetingRoomResponse setBody(DeleteMeetingRoomResponseBody body) {
this.body = body;
return this;
}
public DeleteMeetingRoomResponseBody 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/DeleteMeetingRoomResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomResponseBody 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 DeleteMeetingRoomResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomResponseBody self = new DeleteMeetingRoomResponseBody();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteMeetingRoomResponseBody 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/DeleteMeetingRoomShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteMeetingRoomShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomShrinkHeaders self = new DeleteMeetingRoomShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMeetingRoomShrinkHeaders 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/DeleteMeetingRoomShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMeetingRoomShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0ffb7xxxxx</p>
*/
@NameInMap("RoomId")
public String roomId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteMeetingRoomShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMeetingRoomShrinkRequest self = new DeleteMeetingRoomShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteMeetingRoomShrinkRequest setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
public DeleteMeetingRoomShrinkRequest 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/DeleteMultiDimTableFieldHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteMultiDimTableFieldHeadersAccountContext accountContext;
public static DeleteMultiDimTableFieldHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldHeaders self = new DeleteMultiDimTableFieldHeaders();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMultiDimTableFieldHeaders setAccountContext(DeleteMultiDimTableFieldHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteMultiDimTableFieldHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteMultiDimTableFieldHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteMultiDimTableFieldHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldHeadersAccountContext self = new DeleteMultiDimTableFieldHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldHeadersAccountContext 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/DeleteMultiDimTableFieldRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldRequest 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("FieldIdOrName")
public String fieldIdOrName;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public DeleteMultiDimTableFieldRequestTenantContext tenantContext;
public static DeleteMultiDimTableFieldRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldRequest self = new DeleteMultiDimTableFieldRequest();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public DeleteMultiDimTableFieldRequest setFieldIdOrName(String fieldIdOrName) {
this.fieldIdOrName = fieldIdOrName;
return this;
}
public String getFieldIdOrName() {
return this.fieldIdOrName;
}
public DeleteMultiDimTableFieldRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public DeleteMultiDimTableFieldRequest setTenantContext(DeleteMultiDimTableFieldRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteMultiDimTableFieldRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteMultiDimTableFieldRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteMultiDimTableFieldRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldRequestTenantContext self = new DeleteMultiDimTableFieldRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldRequestTenantContext 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/DeleteMultiDimTableFieldResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteMultiDimTableFieldResponseBody body;
public static DeleteMultiDimTableFieldResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldResponse self = new DeleteMultiDimTableFieldResponse();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteMultiDimTableFieldResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteMultiDimTableFieldResponse setBody(DeleteMultiDimTableFieldResponseBody body) {
this.body = body;
return this;
}
public DeleteMultiDimTableFieldResponseBody 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/DeleteMultiDimTableFieldResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>True</p>
*/
@NameInMap("Success")
public Boolean success;
/**
* <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 DeleteMultiDimTableFieldResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldResponseBody self = new DeleteMultiDimTableFieldResponseBody();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DeleteMultiDimTableFieldResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteMultiDimTableFieldResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteMultiDimTableFieldResponseBody 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/DeleteMultiDimTableFieldShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static DeleteMultiDimTableFieldShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldShrinkHeaders self = new DeleteMultiDimTableFieldShrinkHeaders();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMultiDimTableFieldShrinkHeaders 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/DeleteMultiDimTableFieldShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableFieldShrinkRequest 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("FieldIdOrName")
public String fieldIdOrName;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static DeleteMultiDimTableFieldShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableFieldShrinkRequest self = new DeleteMultiDimTableFieldShrinkRequest();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableFieldShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public DeleteMultiDimTableFieldShrinkRequest setFieldIdOrName(String fieldIdOrName) {
this.fieldIdOrName = fieldIdOrName;
return this;
}
public String getFieldIdOrName() {
return this.fieldIdOrName;
}
public DeleteMultiDimTableFieldShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public DeleteMultiDimTableFieldShrinkRequest 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/DeleteMultiDimTableRecordsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public DeleteMultiDimTableRecordsHeadersAccountContext accountContext;
public static DeleteMultiDimTableRecordsHeaders build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsHeaders self = new DeleteMultiDimTableRecordsHeaders();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public DeleteMultiDimTableRecordsHeaders setAccountContext(DeleteMultiDimTableRecordsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public DeleteMultiDimTableRecordsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class DeleteMultiDimTableRecordsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static DeleteMultiDimTableRecordsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsHeadersAccountContext self = new DeleteMultiDimTableRecordsHeadersAccountContext();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsHeadersAccountContext 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/DeleteMultiDimTableRecordsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsRequest 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 java.util.List<String> recordIds;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public DeleteMultiDimTableRecordsRequestTenantContext tenantContext;
public static DeleteMultiDimTableRecordsRequest build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsRequest self = new DeleteMultiDimTableRecordsRequest();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public DeleteMultiDimTableRecordsRequest setRecordIds(java.util.List<String> recordIds) {
this.recordIds = recordIds;
return this;
}
public java.util.List<String> getRecordIds() {
return this.recordIds;
}
public DeleteMultiDimTableRecordsRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public DeleteMultiDimTableRecordsRequest setTenantContext(DeleteMultiDimTableRecordsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public DeleteMultiDimTableRecordsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class DeleteMultiDimTableRecordsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static DeleteMultiDimTableRecordsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsRequestTenantContext self = new DeleteMultiDimTableRecordsRequestTenantContext();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsRequestTenantContext 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/DeleteMultiDimTableRecordsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public DeleteMultiDimTableRecordsResponseBody body;
public static DeleteMultiDimTableRecordsResponse build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsResponse self = new DeleteMultiDimTableRecordsResponse();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public DeleteMultiDimTableRecordsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public DeleteMultiDimTableRecordsResponse setBody(DeleteMultiDimTableRecordsResponseBody body) {
this.body = body;
return this;
}
public DeleteMultiDimTableRecordsResponseBody 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/DeleteMultiDimTableRecordsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class DeleteMultiDimTableRecordsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>True</p>
*/
@NameInMap("Success")
public Boolean success;
/**
* <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 DeleteMultiDimTableRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception {
DeleteMultiDimTableRecordsResponseBody self = new DeleteMultiDimTableRecordsResponseBody();
return TeaModel.build(map, self);
}
public DeleteMultiDimTableRecordsResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public DeleteMultiDimTableRecordsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public DeleteMultiDimTableRecordsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public DeleteMultiDimTableRecordsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.