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/GetAllSheetsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetAllSheetsHeadersAccountContext accountContext;
public static GetAllSheetsHeaders build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsHeaders self = new GetAllSheetsHeaders();
return TeaModel.build(map, self);
}
public GetAllSheetsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetAllSheetsHeaders setAccountContext(GetAllSheetsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetAllSheetsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetAllSheetsHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetAllSheetsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsHeadersAccountContext self = new GetAllSheetsHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetAllSheetsHeadersAccountContext 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/GetAllSheetsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsRequest extends TeaModel {
@NameInMap("TenantContext")
public GetAllSheetsRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static GetAllSheetsRequest build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsRequest self = new GetAllSheetsRequest();
return TeaModel.build(map, self);
}
public GetAllSheetsRequest setTenantContext(GetAllSheetsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetAllSheetsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetAllSheetsRequest setWorkbookId(String workbookId) {
this.workbookId = workbookId;
return this;
}
public String getWorkbookId() {
return this.workbookId;
}
public static class GetAllSheetsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetAllSheetsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsRequestTenantContext self = new GetAllSheetsRequestTenantContext();
return TeaModel.build(map, self);
}
public GetAllSheetsRequestTenantContext 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/GetAllSheetsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetAllSheetsResponseBody body;
public static GetAllSheetsResponse build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsResponse self = new GetAllSheetsResponse();
return TeaModel.build(map, self);
}
public GetAllSheetsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetAllSheetsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetAllSheetsResponse setBody(GetAllSheetsResponseBody body) {
this.body = body;
return this;
}
public GetAllSheetsResponseBody 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/GetAllSheetsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("value")
public java.util.List<GetAllSheetsResponseBodyValue> value;
public static GetAllSheetsResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsResponseBody self = new GetAllSheetsResponseBody();
return TeaModel.build(map, self);
}
public GetAllSheetsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetAllSheetsResponseBody setValue(java.util.List<GetAllSheetsResponseBodyValue> value) {
this.value = value;
return this;
}
public java.util.List<GetAllSheetsResponseBodyValue> getValue() {
return this.value;
}
public static class GetAllSheetsResponseBodyValue extends TeaModel {
/**
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>Sheet1</p>
*/
@NameInMap("Name")
public String name;
public static GetAllSheetsResponseBodyValue build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsResponseBodyValue self = new GetAllSheetsResponseBodyValue();
return TeaModel.build(map, self);
}
public GetAllSheetsResponseBodyValue setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetAllSheetsResponseBodyValue setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetAllSheetsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetAllSheetsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsShrinkHeaders self = new GetAllSheetsShrinkHeaders();
return TeaModel.build(map, self);
}
public GetAllSheetsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetAllSheetsShrinkHeaders 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/GetAllSheetsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAllSheetsShrinkRequest extends TeaModel {
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>stxxxx</p>
*/
@NameInMap("WorkbookId")
public String workbookId;
public static GetAllSheetsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetAllSheetsShrinkRequest self = new GetAllSheetsShrinkRequest();
return TeaModel.build(map, self);
}
public GetAllSheetsShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetAllSheetsShrinkRequest 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/GetAssistantCapabilityHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAssistantCapabilityHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetAssistantCapabilityHeaders build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityHeaders self = new GetAssistantCapabilityHeaders();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetAssistantCapabilityHeaders 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/GetAssistantCapabilityRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAssistantCapabilityRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>assistantId1</p>
*/
@NameInMap("assistantId")
public String assistantId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("messages")
public java.util.List<GetAssistantCapabilityRequestMessages> messages;
/**
* <strong>example:</strong>
* <p>originalAssistantId1</p>
*/
@NameInMap("originalAssistantId")
public String originalAssistantId;
/**
* <strong>example:</strong>
* <p>cfp</p>
*/
@NameInMap("protocol")
public String protocol;
/**
* <strong>example:</strong>
* <p>agentKey1</p>
*/
@NameInMap("sourceIdOfOriginalAssistantId")
public String sourceIdOfOriginalAssistantId;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("sourceTypeOfOriginalAssistantId")
public String sourceTypeOfOriginalAssistantId;
/**
* <strong>example:</strong>
* <p>threadId</p>
*/
@NameInMap("threadId")
public String threadId;
/**
* <strong>example:</strong>
* <p>5000</p>
*/
@NameInMap("timeout")
public Integer timeout;
public static GetAssistantCapabilityRequest build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequest self = new GetAssistantCapabilityRequest();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public GetAssistantCapabilityRequest setMessages(java.util.List<GetAssistantCapabilityRequestMessages> messages) {
this.messages = messages;
return this;
}
public java.util.List<GetAssistantCapabilityRequestMessages> getMessages() {
return this.messages;
}
public GetAssistantCapabilityRequest setOriginalAssistantId(String originalAssistantId) {
this.originalAssistantId = originalAssistantId;
return this;
}
public String getOriginalAssistantId() {
return this.originalAssistantId;
}
public GetAssistantCapabilityRequest setProtocol(String protocol) {
this.protocol = protocol;
return this;
}
public String getProtocol() {
return this.protocol;
}
public GetAssistantCapabilityRequest setSourceIdOfOriginalAssistantId(String sourceIdOfOriginalAssistantId) {
this.sourceIdOfOriginalAssistantId = sourceIdOfOriginalAssistantId;
return this;
}
public String getSourceIdOfOriginalAssistantId() {
return this.sourceIdOfOriginalAssistantId;
}
public GetAssistantCapabilityRequest setSourceTypeOfOriginalAssistantId(String sourceTypeOfOriginalAssistantId) {
this.sourceTypeOfOriginalAssistantId = sourceTypeOfOriginalAssistantId;
return this;
}
public String getSourceTypeOfOriginalAssistantId() {
return this.sourceTypeOfOriginalAssistantId;
}
public GetAssistantCapabilityRequest setThreadId(String threadId) {
this.threadId = threadId;
return this;
}
public String getThreadId() {
return this.threadId;
}
public GetAssistantCapabilityRequest setTimeout(Integer timeout) {
this.timeout = timeout;
return this;
}
public Integer getTimeout() {
return this.timeout;
}
public static class GetAssistantCapabilityRequestMessagesContentCardCallback extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("content")
public String content;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>aliding_messageId123</p>
*/
@NameInMap("relatedMessageId")
public String relatedMessageId;
public static GetAssistantCapabilityRequestMessagesContentCardCallback build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentCardCallback self = new GetAssistantCapabilityRequestMessagesContentCardCallback();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentCardCallback setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public GetAssistantCapabilityRequestMessagesContentCardCallback setRelatedMessageId(String relatedMessageId) {
this.relatedMessageId = relatedMessageId;
return this;
}
public String getRelatedMessageId() {
return this.relatedMessageId;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingCard extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("content")
public String content;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>basic_card_schema</p>
*/
@NameInMap("contentType")
public String contentType;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("finished")
public Boolean finished;
/**
* <strong>example:</strong>
* <p>templateId123</p>
*/
@NameInMap("templateId")
public String templateId;
public static GetAssistantCapabilityRequestMessagesContentDingCard build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingCard self = new GetAssistantCapabilityRequestMessagesContentDingCard();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingCard setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public GetAssistantCapabilityRequestMessagesContentDingCard setContentType(String contentType) {
this.contentType = contentType;
return this;
}
public String getContentType() {
return this.contentType;
}
public GetAssistantCapabilityRequestMessagesContentDingCard setFinished(Boolean finished) {
this.finished = finished;
return this;
}
public Boolean getFinished() {
return this.finished;
}
public GetAssistantCapabilityRequestMessagesContentDingCard setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData extends TeaModel {
@NameInMap("cardParamMap")
public Object cardParamMap;
public static GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData self = new GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData setCardParamMap(Object cardParamMap) {
this.cardParamMap = cardParamMap;
return this;
}
public Object getCardParamMap() {
return this.cardParamMap;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("updateCardDataByKey")
public Boolean updateCardDataByKey;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("updatePrivateDataByKey")
public Boolean updatePrivateDataByKey;
public static GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions self = new GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions setUpdateCardDataByKey(Boolean updateCardDataByKey) {
this.updateCardDataByKey = updateCardDataByKey;
return this;
}
public Boolean getUpdateCardDataByKey() {
return this.updateCardDataByKey;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions setUpdatePrivateDataByKey(Boolean updatePrivateDataByKey) {
this.updatePrivateDataByKey = updatePrivateDataByKey;
return this;
}
public Boolean getUpdatePrivateDataByKey() {
return this.updatePrivateDataByKey;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig extends TeaModel {
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("interval")
public Integer interval;
/**
* <strong>example:</strong>
* <p>NONE</p>
*/
@NameInMap("pullStrategy")
public String pullStrategy;
/**
* <strong>example:</strong>
* <p>SECONDS</p>
*/
@NameInMap("timeUnit")
public String timeUnit;
public static GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig self = new GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setInterval(Integer interval) {
this.interval = interval;
return this;
}
public Integer getInterval() {
return this.interval;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setPullStrategy(String pullStrategy) {
this.pullStrategy = pullStrategy;
return this;
}
public String getPullStrategy() {
return this.pullStrategy;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setTimeUnit(String timeUnit) {
this.timeUnit = timeUnit;
return this;
}
public String getTimeUnit() {
return this.timeUnit;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("constParams")
public java.util.Map<String, ?> constParams;
/**
* <strong>example:</strong>
* <p>dynamicDataSourceId1</p>
*/
@NameInMap("dynamicDataSourceId")
public String dynamicDataSourceId;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("pullConfig")
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig pullConfig;
public static GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs self = new GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs setConstParams(java.util.Map<String, ?> constParams) {
this.constParams = constParams;
return this;
}
public java.util.Map<String, ?> getConstParams() {
return this.constParams;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs setDynamicDataSourceId(String dynamicDataSourceId) {
this.dynamicDataSourceId = dynamicDataSourceId;
return this;
}
public String getDynamicDataSourceId() {
return this.dynamicDataSourceId;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs setPullConfig(GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig pullConfig) {
this.pullConfig = pullConfig;
return this;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig getPullConfig() {
return this.pullConfig;
}
}
public static class GetAssistantCapabilityRequestMessagesContentDingNormalCard extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("cardData")
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData cardData;
/**
* <strong>example:</strong>
* <p>templateId1</p>
*/
@NameInMap("cardTemplateId")
public String cardTemplateId;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("cardUpdateOptions")
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions cardUpdateOptions;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dynamicDataSourceConfigs")
public java.util.List<GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs> dynamicDataSourceConfigs;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("privateData")
public java.util.Map<String, ?> privateData;
public static GetAssistantCapabilityRequestMessagesContentDingNormalCard build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentDingNormalCard self = new GetAssistantCapabilityRequestMessagesContentDingNormalCard();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard setCardData(GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData cardData) {
this.cardData = cardData;
return this;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardData getCardData() {
return this.cardData;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard setCardTemplateId(String cardTemplateId) {
this.cardTemplateId = cardTemplateId;
return this;
}
public String getCardTemplateId() {
return this.cardTemplateId;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard setCardUpdateOptions(GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions cardUpdateOptions) {
this.cardUpdateOptions = cardUpdateOptions;
return this;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCardCardUpdateOptions getCardUpdateOptions() {
return this.cardUpdateOptions;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard setDynamicDataSourceConfigs(java.util.List<GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs> dynamicDataSourceConfigs) {
this.dynamicDataSourceConfigs = dynamicDataSourceConfigs;
return this;
}
public java.util.List<GetAssistantCapabilityRequestMessagesContentDingNormalCardDynamicDataSourceConfigs> getDynamicDataSourceConfigs() {
return this.dynamicDataSourceConfigs;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard setPrivateData(java.util.Map<String, ?> privateData) {
this.privateData = privateData;
return this;
}
public java.util.Map<String, ?> getPrivateData() {
return this.privateData;
}
}
public static class GetAssistantCapabilityRequestMessagesContentMarkdown extends TeaModel {
/**
* <strong>example:</strong>
* <ol>
* <li>markdown内容</li>
* <li>markdown内容</li>
* </ol>
*/
@NameInMap("value")
public String value;
public static GetAssistantCapabilityRequestMessagesContentMarkdown build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentMarkdown self = new GetAssistantCapabilityRequestMessagesContentMarkdown();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentMarkdown setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart extends TeaModel {
@NameInMap("data")
public Object data;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart setData(Object data) {
this.data = data;
return this;
}
public Object getData() {
return this.data;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart extends TeaModel {
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("reason")
public String reason;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart setReason(String reason) {
this.reason = reason;
return this;
}
public String getReason() {
return this.reason;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends extends TeaModel {
@NameInMap("mobileUrl")
public String mobileUrl;
@NameInMap("text")
public String text;
@NameInMap("url")
public String url;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart extends TeaModel {
@NameInMap("recommends")
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends> recommends;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart setRecommends(java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends> recommends) {
this.recommends = recommends;
return this;
}
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPartRecommends> getRecommends() {
return this.recommends;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences extends TeaModel {
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("index")
public String index;
/**
* <strong>example:</strong>
* <p>mcp是....</p>
*/
@NameInMap("name")
public String name;
/**
* <strong>example:</strong>
* <p>ata</p>
*/
@NameInMap("sourceCode")
public String sourceCode;
@NameInMap("sourceIcon")
public String sourceIcon;
/**
* <strong>example:</strong>
* <p>摘要</p>
*/
@NameInMap("summary")
public String summary;
/**
* <strong>example:</strong>
* <p>《mcp原理介绍》</p>
*/
@NameInMap("title")
public String title;
/**
* <strong>example:</strong>
* <p><a href="https://taobao.com">https://taobao.com</a></p>
*/
@NameInMap("url")
public String url;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setIndex(String index) {
this.index = index;
return this;
}
public String getIndex() {
return this.index;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setSourceCode(String sourceCode) {
this.sourceCode = sourceCode;
return this;
}
public String getSourceCode() {
return this.sourceCode;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setSourceIcon(String sourceIcon) {
this.sourceIcon = sourceIcon;
return this;
}
public String getSourceIcon() {
return this.sourceIcon;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart extends TeaModel {
@NameInMap("references")
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences> references;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart setReferences(java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences> references) {
this.references = references;
return this;
}
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePartReferences> getReferences() {
return this.references;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart extends TeaModel {
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("text")
public String text;
public static GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart self = new GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructViewParts extends TeaModel {
@NameInMap("append")
public Boolean append;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dataPart")
public GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart dataPart;
@NameInMap("finish")
public Boolean finish;
/**
* <strong>example:</strong>
* <p>这是正文内容部分</p>
*/
@NameInMap("partDesc")
public String partDesc;
/**
* <strong>example:</strong>
* <p>artifactId123</p>
*/
@NameInMap("partId")
public String partId;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("reasonPart")
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart reasonPart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("recommendPart")
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart recommendPart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("referencePart")
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart referencePart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("textPart")
public GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart textPart;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>textPart</p>
*/
@NameInMap("type")
public String type;
public static GetAssistantCapabilityRequestMessagesContentStructViewParts build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructViewParts self = new GetAssistantCapabilityRequestMessagesContentStructViewParts();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setAppend(Boolean append) {
this.append = append;
return this;
}
public Boolean getAppend() {
return this.append;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setDataPart(GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart dataPart) {
this.dataPart = dataPart;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsDataPart getDataPart() {
return this.dataPart;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setFinish(Boolean finish) {
this.finish = finish;
return this;
}
public Boolean getFinish() {
return this.finish;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setPartDesc(String partDesc) {
this.partDesc = partDesc;
return this;
}
public String getPartDesc() {
return this.partDesc;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setPartId(String partId) {
this.partId = partId;
return this;
}
public String getPartId() {
return this.partId;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setReasonPart(GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart reasonPart) {
this.reasonPart = reasonPart;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReasonPart getReasonPart() {
return this.reasonPart;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setRecommendPart(GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart recommendPart) {
this.recommendPart = recommendPart;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsRecommendPart getRecommendPart() {
return this.recommendPart;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setReferencePart(GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart referencePart) {
this.referencePart = referencePart;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsReferencePart getReferencePart() {
return this.referencePart;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setTextPart(GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart textPart) {
this.textPart = textPart;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructViewPartsTextPart getTextPart() {
return this.textPart;
}
public GetAssistantCapabilityRequestMessagesContentStructViewParts setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetAssistantCapabilityRequestMessagesContentStructView extends TeaModel {
@NameInMap("parts")
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewParts> parts;
public static GetAssistantCapabilityRequestMessagesContentStructView build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentStructView self = new GetAssistantCapabilityRequestMessagesContentStructView();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentStructView setParts(java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewParts> parts) {
this.parts = parts;
return this;
}
public java.util.List<GetAssistantCapabilityRequestMessagesContentStructViewParts> getParts() {
return this.parts;
}
}
public static class GetAssistantCapabilityRequestMessagesContentText extends TeaModel {
/**
* <strong>example:</strong>
* <p>你好!</p>
*/
@NameInMap("value")
public String value;
public static GetAssistantCapabilityRequestMessagesContentText build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContentText self = new GetAssistantCapabilityRequestMessagesContentText();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContentText setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class GetAssistantCapabilityRequestMessagesContent extends TeaModel {
@NameInMap("cardCallback")
public GetAssistantCapabilityRequestMessagesContentCardCallback cardCallback;
@NameInMap("dingCard")
public GetAssistantCapabilityRequestMessagesContentDingCard dingCard;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dingNormalCard")
public GetAssistantCapabilityRequestMessagesContentDingNormalCard dingNormalCard;
@NameInMap("markdown")
public GetAssistantCapabilityRequestMessagesContentMarkdown markdown;
@NameInMap("structView")
public GetAssistantCapabilityRequestMessagesContentStructView structView;
@NameInMap("text")
public GetAssistantCapabilityRequestMessagesContentText text;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>枚举字段,可为:text,markdown,cardCallback,dingCard,agentArtifact,dingNormalCard</p>
*/
@NameInMap("type")
public String type;
public static GetAssistantCapabilityRequestMessagesContent build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessagesContent self = new GetAssistantCapabilityRequestMessagesContent();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessagesContent setCardCallback(GetAssistantCapabilityRequestMessagesContentCardCallback cardCallback) {
this.cardCallback = cardCallback;
return this;
}
public GetAssistantCapabilityRequestMessagesContentCardCallback getCardCallback() {
return this.cardCallback;
}
public GetAssistantCapabilityRequestMessagesContent setDingCard(GetAssistantCapabilityRequestMessagesContentDingCard dingCard) {
this.dingCard = dingCard;
return this;
}
public GetAssistantCapabilityRequestMessagesContentDingCard getDingCard() {
return this.dingCard;
}
public GetAssistantCapabilityRequestMessagesContent setDingNormalCard(GetAssistantCapabilityRequestMessagesContentDingNormalCard dingNormalCard) {
this.dingNormalCard = dingNormalCard;
return this;
}
public GetAssistantCapabilityRequestMessagesContentDingNormalCard getDingNormalCard() {
return this.dingNormalCard;
}
public GetAssistantCapabilityRequestMessagesContent setMarkdown(GetAssistantCapabilityRequestMessagesContentMarkdown markdown) {
this.markdown = markdown;
return this;
}
public GetAssistantCapabilityRequestMessagesContentMarkdown getMarkdown() {
return this.markdown;
}
public GetAssistantCapabilityRequestMessagesContent setStructView(GetAssistantCapabilityRequestMessagesContentStructView structView) {
this.structView = structView;
return this;
}
public GetAssistantCapabilityRequestMessagesContentStructView getStructView() {
return this.structView;
}
public GetAssistantCapabilityRequestMessagesContent setText(GetAssistantCapabilityRequestMessagesContentText text) {
this.text = text;
return this;
}
public GetAssistantCapabilityRequestMessagesContentText getText() {
return this.text;
}
public GetAssistantCapabilityRequestMessagesContent setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetAssistantCapabilityRequestMessages extends TeaModel {
@NameInMap("content")
public GetAssistantCapabilityRequestMessagesContent content;
/**
* <strong>example:</strong>
* <p>这是一张小猫钓鱼图</p>
*/
@NameInMap("contentDesc")
public String contentDesc;
/**
* <strong>example:</strong>
* <p>1642448000000</p>
*/
@NameInMap("createAt")
public Long createAt;
/**
* <strong>example:</strong>
* <p>user</p>
*/
@NameInMap("role")
public String role;
public static GetAssistantCapabilityRequestMessages build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityRequestMessages self = new GetAssistantCapabilityRequestMessages();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityRequestMessages setContent(GetAssistantCapabilityRequestMessagesContent content) {
this.content = content;
return this;
}
public GetAssistantCapabilityRequestMessagesContent getContent() {
return this.content;
}
public GetAssistantCapabilityRequestMessages setContentDesc(String contentDesc) {
this.contentDesc = contentDesc;
return this;
}
public String getContentDesc() {
return this.contentDesc;
}
public GetAssistantCapabilityRequestMessages setCreateAt(Long createAt) {
this.createAt = createAt;
return this;
}
public Long getCreateAt() {
return this.createAt;
}
public GetAssistantCapabilityRequestMessages setRole(String role) {
this.role = role;
return this;
}
public String getRole() {
return this.role;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetAssistantCapabilityResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAssistantCapabilityResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetAssistantCapabilityResponseBody body;
public static GetAssistantCapabilityResponse build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityResponse self = new GetAssistantCapabilityResponse();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetAssistantCapabilityResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetAssistantCapabilityResponse setBody(GetAssistantCapabilityResponseBody body) {
this.body = body;
return this;
}
public GetAssistantCapabilityResponseBody 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/GetAssistantCapabilityResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetAssistantCapabilityResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>助理描述</p>
*/
@NameInMap("assistantDescription")
public String assistantDescription;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("canHandle")
public Boolean canHandle;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("capabilityAssessment")
public GetAssistantCapabilityResponseBodyCapabilityAssessment capabilityAssessment;
/**
* <strong>example:</strong>
* <p>requestId</p>
*/
@NameInMap("requestId")
public String requestId;
public static GetAssistantCapabilityResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityResponseBody self = new GetAssistantCapabilityResponseBody();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityResponseBody setAssistantDescription(String assistantDescription) {
this.assistantDescription = assistantDescription;
return this;
}
public String getAssistantDescription() {
return this.assistantDescription;
}
public GetAssistantCapabilityResponseBody setCanHandle(Boolean canHandle) {
this.canHandle = canHandle;
return this;
}
public Boolean getCanHandle() {
return this.canHandle;
}
public GetAssistantCapabilityResponseBody setCapabilityAssessment(GetAssistantCapabilityResponseBodyCapabilityAssessment capabilityAssessment) {
this.capabilityAssessment = capabilityAssessment;
return this;
}
public GetAssistantCapabilityResponseBodyCapabilityAssessment getCapabilityAssessment() {
return this.capabilityAssessment;
}
public GetAssistantCapabilityResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList extends TeaModel {
/**
* <strong>example:</strong>
* <p>能力概览</p>
*/
@NameInMap("capabilityOverview")
public String capabilityOverview;
/**
* <strong>example:</strong>
* <p>能力描述</p>
*/
@NameInMap("description")
public String description;
/**
* <strong>example:</strong>
* <p>能力名称</p>
*/
@NameInMap("name")
public String name;
public static GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList self = new GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList setCapabilityOverview(String capabilityOverview) {
this.capabilityOverview = capabilityOverview;
return this;
}
public String getCapabilityOverview() {
return this.capabilityOverview;
}
public GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
public static class GetAssistantCapabilityResponseBodyCapabilityAssessment extends TeaModel {
/**
* <strong>example:</strong>
* <p>能力概览</p>
*/
@NameInMap("briefCapability")
public String briefCapability;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("capabilityList")
public java.util.List<GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList> capabilityList;
public static GetAssistantCapabilityResponseBodyCapabilityAssessment build(java.util.Map<String, ?> map) throws Exception {
GetAssistantCapabilityResponseBodyCapabilityAssessment self = new GetAssistantCapabilityResponseBodyCapabilityAssessment();
return TeaModel.build(map, self);
}
public GetAssistantCapabilityResponseBodyCapabilityAssessment setBriefCapability(String briefCapability) {
this.briefCapability = briefCapability;
return this;
}
public String getBriefCapability() {
return this.briefCapability;
}
public GetAssistantCapabilityResponseBodyCapabilityAssessment setCapabilityList(java.util.List<GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList> capabilityList) {
this.capabilityList = capabilityList;
return this;
}
public java.util.List<GetAssistantCapabilityResponseBodyCapabilityAssessmentCapabilityList> getCapabilityList() {
return this.capabilityList;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetCardTemplateHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetCardTemplateHeadersAccountContext accountContext;
public static GetCardTemplateHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateHeaders self = new GetCardTemplateHeaders();
return TeaModel.build(map, self);
}
public GetCardTemplateHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCardTemplateHeaders setAccountContext(GetCardTemplateHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetCardTemplateHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetCardTemplateHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetCardTemplateHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateHeadersAccountContext self = new GetCardTemplateHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetCardTemplateHeadersAccountContext 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/GetCardTemplateRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("TemplateId")
public String templateId;
@NameInMap("TenantContext")
public GetCardTemplateRequestTenantContext tenantContext;
public static GetCardTemplateRequest build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateRequest self = new GetCardTemplateRequest();
return TeaModel.build(map, self);
}
public GetCardTemplateRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public GetCardTemplateRequest setTenantContext(GetCardTemplateRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetCardTemplateRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetCardTemplateRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetCardTemplateRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateRequestTenantContext self = new GetCardTemplateRequestTenantContext();
return TeaModel.build(map, self);
}
public GetCardTemplateRequestTenantContext 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/GetCardTemplateResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetCardTemplateResponseBody body;
public static GetCardTemplateResponse build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateResponse self = new GetCardTemplateResponse();
return TeaModel.build(map, self);
}
public GetCardTemplateResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetCardTemplateResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetCardTemplateResponse setBody(GetCardTemplateResponseBody body) {
this.body = body;
return this;
}
public GetCardTemplateResponseBody 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/GetCardTemplateResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("commonVariableList")
public java.util.List<GetCardTemplateResponseBodyCommonVariableList> commonVariableList;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>online</p>
*/
@NameInMap("status")
public String status;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("templateId")
public String templateId;
/**
* <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 GetCardTemplateResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateResponseBody self = new GetCardTemplateResponseBody();
return TeaModel.build(map, self);
}
public GetCardTemplateResponseBody setCommonVariableList(java.util.List<GetCardTemplateResponseBodyCommonVariableList> commonVariableList) {
this.commonVariableList = commonVariableList;
return this;
}
public java.util.List<GetCardTemplateResponseBodyCommonVariableList> getCommonVariableList() {
return this.commonVariableList;
}
public GetCardTemplateResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetCardTemplateResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetCardTemplateResponseBody setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public GetCardTemplateResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetCardTemplateResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetCardTemplateResponseBodyCommonVariableList extends TeaModel {
/**
* <strong>example:</strong>
* <p>卡片摘要</p>
*/
@NameInMap("Description")
public String description;
/**
* <p>Id</p>
*
* <strong>example:</strong>
* <p>lastMessage</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IfPrivateFiled")
public Boolean ifPrivateFiled;
/**
* <strong>example:</strong>
* <p>lastMessage</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>string</p>
*/
@NameInMap("Type")
public String type;
public static GetCardTemplateResponseBodyCommonVariableList build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateResponseBodyCommonVariableList self = new GetCardTemplateResponseBodyCommonVariableList();
return TeaModel.build(map, self);
}
public GetCardTemplateResponseBodyCommonVariableList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetCardTemplateResponseBodyCommonVariableList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetCardTemplateResponseBodyCommonVariableList setIfPrivateFiled(Boolean ifPrivateFiled) {
this.ifPrivateFiled = ifPrivateFiled;
return this;
}
public Boolean getIfPrivateFiled() {
return this.ifPrivateFiled;
}
public GetCardTemplateResponseBodyCommonVariableList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetCardTemplateResponseBodyCommonVariableList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetCardTemplateShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetCardTemplateShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateShrinkHeaders self = new GetCardTemplateShrinkHeaders();
return TeaModel.build(map, self);
}
public GetCardTemplateShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCardTemplateShrinkHeaders 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/GetCardTemplateShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCardTemplateShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("TemplateId")
public String templateId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetCardTemplateShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetCardTemplateShrinkRequest self = new GetCardTemplateShrinkRequest();
return TeaModel.build(map, self);
}
public GetCardTemplateShrinkRequest setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
public GetCardTemplateShrinkRequest 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/GetConversaionSpaceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetConversaionSpaceHeadersAccountContext accountContext;
public static GetConversaionSpaceHeaders build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceHeaders self = new GetConversaionSpaceHeaders();
return TeaModel.build(map, self);
}
public GetConversaionSpaceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetConversaionSpaceHeaders setAccountContext(GetConversaionSpaceHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetConversaionSpaceHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetConversaionSpaceHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetConversaionSpaceHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceHeadersAccountContext self = new GetConversaionSpaceHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetConversaionSpaceHeadersAccountContext 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/GetConversaionSpaceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidB8Pzg****FIWPv2PMA==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("TenantContext")
public GetConversaionSpaceRequestTenantContext tenantContext;
public static GetConversaionSpaceRequest build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceRequest self = new GetConversaionSpaceRequest();
return TeaModel.build(map, self);
}
public GetConversaionSpaceRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetConversaionSpaceRequest setTenantContext(GetConversaionSpaceRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetConversaionSpaceRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetConversaionSpaceRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetConversaionSpaceRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceRequestTenantContext self = new GetConversaionSpaceRequestTenantContext();
return TeaModel.build(map, self);
}
public GetConversaionSpaceRequestTenantContext 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/GetConversaionSpaceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetConversaionSpaceResponseBody body;
public static GetConversaionSpaceResponse build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceResponse self = new GetConversaionSpaceResponse();
return TeaModel.build(map, self);
}
public GetConversaionSpaceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetConversaionSpaceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetConversaionSpaceResponse setBody(GetConversaionSpaceResponseBody body) {
this.body = body;
return this;
}
public GetConversaionSpaceResponseBody 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/GetConversaionSpaceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("space")
public GetConversaionSpaceResponseBodySpace space;
/**
* <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 GetConversaionSpaceResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceResponseBody self = new GetConversaionSpaceResponseBody();
return TeaModel.build(map, self);
}
public GetConversaionSpaceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetConversaionSpaceResponseBody setSpace(GetConversaionSpaceResponseBodySpace space) {
this.space = space;
return this;
}
public GetConversaionSpaceResponseBodySpace getSpace() {
return this.space;
}
public GetConversaionSpaceResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetConversaionSpaceResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetConversaionSpaceResponseBodySpace extends TeaModel {
/**
* <strong>example:</strong>
* <p>ding1234xxxxx</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>2022-01-01T10:00:00Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>2022-01-01T10:00:00Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>798xxxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
public static GetConversaionSpaceResponseBodySpace build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceResponseBodySpace self = new GetConversaionSpaceResponseBodySpace();
return TeaModel.build(map, self);
}
public GetConversaionSpaceResponseBodySpace setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetConversaionSpaceResponseBodySpace setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetConversaionSpaceResponseBodySpace setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public GetConversaionSpaceResponseBodySpace setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetConversaionSpaceShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetConversaionSpaceShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceShrinkHeaders self = new GetConversaionSpaceShrinkHeaders();
return TeaModel.build(map, self);
}
public GetConversaionSpaceShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetConversaionSpaceShrinkHeaders 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/GetConversaionSpaceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetConversaionSpaceShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidB8Pzg****FIWPv2PMA==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetConversaionSpaceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetConversaionSpaceShrinkRequest self = new GetConversaionSpaceShrinkRequest();
return TeaModel.build(map, self);
}
public GetConversaionSpaceShrinkRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetConversaionSpaceShrinkRequest 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/GetCorpAccomplishmentTasksHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpAccomplishmentTasksHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetCorpAccomplishmentTasksHeadersAccountContext accountContext;
public static GetCorpAccomplishmentTasksHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksHeaders self = new GetCorpAccomplishmentTasksHeaders();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCorpAccomplishmentTasksHeaders setAccountContext(GetCorpAccomplishmentTasksHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetCorpAccomplishmentTasksHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetCorpAccomplishmentTasksHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetCorpAccomplishmentTasksHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksHeadersAccountContext self = new GetCorpAccomplishmentTasksHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksHeadersAccountContext 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/GetCorpAccomplishmentTasksRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpAccomplishmentTasksRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBKTxxx</p>
*/
@NameInMap("AppTypes")
public String appTypes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>corpIdxxx</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateFromTimeGMT")
public Long createFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateToTimeGMT")
public Long createToTimeGMT;
/**
* <strong>example:</strong>
* <p>**</p>
*/
@NameInMap("Keyword")
public String keyword;
/**
* <strong>example:</strong>
* <p>zh-CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>["xx","xxx"]</p>
*/
@NameInMap("ProcessCodes")
public String processCodes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("Token")
public String token;
public static GetCorpAccomplishmentTasksRequest build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksRequest self = new GetCorpAccomplishmentTasksRequest();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksRequest setAppTypes(String appTypes) {
this.appTypes = appTypes;
return this;
}
public String getAppTypes() {
return this.appTypes;
}
public GetCorpAccomplishmentTasksRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetCorpAccomplishmentTasksRequest setCreateFromTimeGMT(Long createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public Long getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetCorpAccomplishmentTasksRequest setCreateToTimeGMT(Long createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public Long getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetCorpAccomplishmentTasksRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public GetCorpAccomplishmentTasksRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetCorpAccomplishmentTasksRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetCorpAccomplishmentTasksRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetCorpAccomplishmentTasksRequest setProcessCodes(String processCodes) {
this.processCodes = processCodes;
return this;
}
public String getProcessCodes() {
return this.processCodes;
}
public GetCorpAccomplishmentTasksRequest setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetCorpAccomplishmentTasksResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpAccomplishmentTasksResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetCorpAccomplishmentTasksResponseBody body;
public static GetCorpAccomplishmentTasksResponse build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksResponse self = new GetCorpAccomplishmentTasksResponse();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetCorpAccomplishmentTasksResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetCorpAccomplishmentTasksResponse setBody(GetCorpAccomplishmentTasksResponseBody body) {
this.body = body;
return this;
}
public GetCorpAccomplishmentTasksResponseBody 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/GetCorpAccomplishmentTasksResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpAccomplishmentTasksResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[{}]</p>
*/
@NameInMap("data")
public java.util.List<GetCorpAccomplishmentTasksResponseBodyData> data;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("totalCount")
public Long totalCount;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetCorpAccomplishmentTasksResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksResponseBody self = new GetCorpAccomplishmentTasksResponseBody();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksResponseBody setData(java.util.List<GetCorpAccomplishmentTasksResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetCorpAccomplishmentTasksResponseBodyData> getData() {
return this.data;
}
public GetCorpAccomplishmentTasksResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetCorpAccomplishmentTasksResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetCorpAccomplishmentTasksResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetCorpAccomplishmentTasksResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetCorpAccomplishmentTasksResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetCorpAccomplishmentTasksResponseBodyData extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("ActiveTimeGMT")
public String activeTimeGMT;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("ActualActionerId")
public String actualActionerId;
/**
* <strong>example:</strong>
* <p>APP_XCxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("CreateTimeGMT")
public String createTimeGMT;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("FinishTimeGMT")
public String finishTimeGMT;
/**
* <strong>example:</strong>
* <p><a href="mailto:123456@li.com">123456@li.com</a></p>
*/
@NameInMap("OriginatorEmail")
public String originatorEmail;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("OriginatorId")
public String originatorId;
/**
* <strong>example:</strong>
* <p>名称</p>
*/
@NameInMap("OriginatorName")
public String originatorName;
/**
* <strong>example:</strong>
* <p>name</p>
*/
@NameInMap("OriginatorNameInEnglish")
public String originatorNameInEnglish;
/**
* <strong>example:</strong>
* <p>昵称</p>
*/
@NameInMap("OriginatorNickName")
public String originatorNickName;
/**
* <strong>example:</strong>
* <p>english nick</p>
*/
@NameInMap("OriginatorNickNameInEnglish")
public String originatorNickNameInEnglish;
/**
* <strong>example:</strong>
* <p>originatorPhotoexample</p>
*/
@NameInMap("OriginatorPhoto")
public String originatorPhoto;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("OutResult")
public String outResult;
/**
* <strong>example:</strong>
* <p>结果名称</p>
*/
@NameInMap("OutResultName")
public String outResultName;
/**
* <strong>example:</strong>
* <p>instancexxxx</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>标题</p>
*/
@NameInMap("Title")
public String title;
public static GetCorpAccomplishmentTasksResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksResponseBodyData self = new GetCorpAccomplishmentTasksResponseBodyData();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksResponseBodyData setActiveTimeGMT(String activeTimeGMT) {
this.activeTimeGMT = activeTimeGMT;
return this;
}
public String getActiveTimeGMT() {
return this.activeTimeGMT;
}
public GetCorpAccomplishmentTasksResponseBodyData setActualActionerId(String actualActionerId) {
this.actualActionerId = actualActionerId;
return this;
}
public String getActualActionerId() {
return this.actualActionerId;
}
public GetCorpAccomplishmentTasksResponseBodyData setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetCorpAccomplishmentTasksResponseBodyData setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetCorpAccomplishmentTasksResponseBodyData setFinishTimeGMT(String finishTimeGMT) {
this.finishTimeGMT = finishTimeGMT;
return this;
}
public String getFinishTimeGMT() {
return this.finishTimeGMT;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorEmail(String originatorEmail) {
this.originatorEmail = originatorEmail;
return this;
}
public String getOriginatorEmail() {
return this.originatorEmail;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorId(String originatorId) {
this.originatorId = originatorId;
return this;
}
public String getOriginatorId() {
return this.originatorId;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorName(String originatorName) {
this.originatorName = originatorName;
return this;
}
public String getOriginatorName() {
return this.originatorName;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorNameInEnglish(String originatorNameInEnglish) {
this.originatorNameInEnglish = originatorNameInEnglish;
return this;
}
public String getOriginatorNameInEnglish() {
return this.originatorNameInEnglish;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorNickName(String originatorNickName) {
this.originatorNickName = originatorNickName;
return this;
}
public String getOriginatorNickName() {
return this.originatorNickName;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorNickNameInEnglish(String originatorNickNameInEnglish) {
this.originatorNickNameInEnglish = originatorNickNameInEnglish;
return this;
}
public String getOriginatorNickNameInEnglish() {
return this.originatorNickNameInEnglish;
}
public GetCorpAccomplishmentTasksResponseBodyData setOriginatorPhoto(String originatorPhoto) {
this.originatorPhoto = originatorPhoto;
return this;
}
public String getOriginatorPhoto() {
return this.originatorPhoto;
}
public GetCorpAccomplishmentTasksResponseBodyData setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public GetCorpAccomplishmentTasksResponseBodyData setOutResultName(String outResultName) {
this.outResultName = outResultName;
return this;
}
public String getOutResultName() {
return this.outResultName;
}
public GetCorpAccomplishmentTasksResponseBodyData setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetCorpAccomplishmentTasksResponseBodyData 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/GetCorpAccomplishmentTasksShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpAccomplishmentTasksShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetCorpAccomplishmentTasksShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCorpAccomplishmentTasksShrinkHeaders self = new GetCorpAccomplishmentTasksShrinkHeaders();
return TeaModel.build(map, self);
}
public GetCorpAccomplishmentTasksShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCorpAccomplishmentTasksShrinkHeaders 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/GetCorpTasksHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpTasksHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetCorpTasksHeadersAccountContext accountContext;
public static GetCorpTasksHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksHeaders self = new GetCorpTasksHeaders();
return TeaModel.build(map, self);
}
public GetCorpTasksHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCorpTasksHeaders setAccountContext(GetCorpTasksHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetCorpTasksHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetCorpTasksHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetCorpTasksHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksHeadersAccountContext self = new GetCorpTasksHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetCorpTasksHeadersAccountContext 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/GetCorpTasksRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpTasksRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKxxx</p>
*/
@NameInMap("AppTypes")
public String appTypes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>corpId</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateFromTimeGMT")
public Long createFromTimeGMT;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("CreateToTimeGMT")
public Long createToTimeGMT;
/**
* <strong>example:</strong>
* <p>keyword</p>
*/
@NameInMap("Keyword")
public String keyword;
/**
* <strong>example:</strong>
* <p>zh-CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>["xx","xxx"]</p>
*/
@NameInMap("ProcessCodes")
public String processCodes;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("Token")
public String token;
public static GetCorpTasksRequest build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksRequest self = new GetCorpTasksRequest();
return TeaModel.build(map, self);
}
public GetCorpTasksRequest setAppTypes(String appTypes) {
this.appTypes = appTypes;
return this;
}
public String getAppTypes() {
return this.appTypes;
}
public GetCorpTasksRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public GetCorpTasksRequest setCreateFromTimeGMT(Long createFromTimeGMT) {
this.createFromTimeGMT = createFromTimeGMT;
return this;
}
public Long getCreateFromTimeGMT() {
return this.createFromTimeGMT;
}
public GetCorpTasksRequest setCreateToTimeGMT(Long createToTimeGMT) {
this.createToTimeGMT = createToTimeGMT;
return this;
}
public Long getCreateToTimeGMT() {
return this.createToTimeGMT;
}
public GetCorpTasksRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public GetCorpTasksRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetCorpTasksRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetCorpTasksRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetCorpTasksRequest setProcessCodes(String processCodes) {
this.processCodes = processCodes;
return this;
}
public String getProcessCodes() {
return this.processCodes;
}
public GetCorpTasksRequest setToken(String token) {
this.token = token;
return this;
}
public String getToken() {
return this.token;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetCorpTasksResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpTasksResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetCorpTasksResponseBody body;
public static GetCorpTasksResponse build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksResponse self = new GetCorpTasksResponse();
return TeaModel.build(map, self);
}
public GetCorpTasksResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetCorpTasksResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetCorpTasksResponse setBody(GetCorpTasksResponseBody body) {
this.body = body;
return this;
}
public GetCorpTasksResponseBody 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/GetCorpTasksResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpTasksResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[{}]</p>
*/
@NameInMap("data")
public java.util.List<GetCorpTasksResponseBodyData> data;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("totalCount")
public Long totalCount;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetCorpTasksResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksResponseBody self = new GetCorpTasksResponseBody();
return TeaModel.build(map, self);
}
public GetCorpTasksResponseBody setData(java.util.List<GetCorpTasksResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetCorpTasksResponseBodyData> getData() {
return this.data;
}
public GetCorpTasksResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public GetCorpTasksResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetCorpTasksResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public GetCorpTasksResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetCorpTasksResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetCorpTasksResponseBodyData extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("ActiveTimeGMT")
public String activeTimeGMT;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("ActualActionerId")
public String actualActionerId;
/**
* <strong>example:</strong>
* <p>APP_XCxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("CreateTimeGMT")
public String createTimeGMT;
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("FinishTimeGMT")
public String finishTimeGMT;
/**
* <strong>example:</strong>
* <p><a href="mailto:123456@li.com">123456@li.com</a></p>
*/
@NameInMap("OriginatorEmail")
public String originatorEmail;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("OriginatorId")
public String originatorId;
/**
* <strong>example:</strong>
* <p>名称</p>
*/
@NameInMap("OriginatorName")
public String originatorName;
/**
* <strong>example:</strong>
* <p>name</p>
*/
@NameInMap("OriginatorNameInEnglish")
public String originatorNameInEnglish;
/**
* <strong>example:</strong>
* <p>昵称</p>
*/
@NameInMap("OriginatorNickName")
public String originatorNickName;
/**
* <strong>example:</strong>
* <p>nick en</p>
*/
@NameInMap("OriginatorNickNameEn")
public String originatorNickNameEn;
/**
* <strong>example:</strong>
* <p>english nick</p>
*/
@NameInMap("OriginatorNickNameInEnglish")
public String originatorNickNameInEnglish;
/**
* <strong>example:</strong>
* <p>originatorPhotoexample</p>
*/
@NameInMap("OriginatorPhoto")
public String originatorPhoto;
/**
* <strong>example:</strong>
* <p>agree</p>
*/
@NameInMap("OutResult")
public String outResult;
/**
* <strong>example:</strong>
* <p>结果名称</p>
*/
@NameInMap("OutResultName")
public String outResultName;
/**
* <strong>example:</strong>
* <p>instancexxxx</p>
*/
@NameInMap("ProcessInstanceId")
public String processInstanceId;
/**
* <strong>example:</strong>
* <p>running</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>taskId</p>
*/
@NameInMap("TaskId")
public String taskId;
/**
* <strong>example:</strong>
* <p>running</p>
*/
@NameInMap("TaskType")
public String taskType;
/**
* <strong>example:</strong>
* <p>标题</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>title</p>
*/
@NameInMap("TitleInEnglish")
public String titleInEnglish;
public static GetCorpTasksResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksResponseBodyData self = new GetCorpTasksResponseBodyData();
return TeaModel.build(map, self);
}
public GetCorpTasksResponseBodyData setActiveTimeGMT(String activeTimeGMT) {
this.activeTimeGMT = activeTimeGMT;
return this;
}
public String getActiveTimeGMT() {
return this.activeTimeGMT;
}
public GetCorpTasksResponseBodyData setActualActionerId(String actualActionerId) {
this.actualActionerId = actualActionerId;
return this;
}
public String getActualActionerId() {
return this.actualActionerId;
}
public GetCorpTasksResponseBodyData setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetCorpTasksResponseBodyData setCreateTimeGMT(String createTimeGMT) {
this.createTimeGMT = createTimeGMT;
return this;
}
public String getCreateTimeGMT() {
return this.createTimeGMT;
}
public GetCorpTasksResponseBodyData setFinishTimeGMT(String finishTimeGMT) {
this.finishTimeGMT = finishTimeGMT;
return this;
}
public String getFinishTimeGMT() {
return this.finishTimeGMT;
}
public GetCorpTasksResponseBodyData setOriginatorEmail(String originatorEmail) {
this.originatorEmail = originatorEmail;
return this;
}
public String getOriginatorEmail() {
return this.originatorEmail;
}
public GetCorpTasksResponseBodyData setOriginatorId(String originatorId) {
this.originatorId = originatorId;
return this;
}
public String getOriginatorId() {
return this.originatorId;
}
public GetCorpTasksResponseBodyData setOriginatorName(String originatorName) {
this.originatorName = originatorName;
return this;
}
public String getOriginatorName() {
return this.originatorName;
}
public GetCorpTasksResponseBodyData setOriginatorNameInEnglish(String originatorNameInEnglish) {
this.originatorNameInEnglish = originatorNameInEnglish;
return this;
}
public String getOriginatorNameInEnglish() {
return this.originatorNameInEnglish;
}
public GetCorpTasksResponseBodyData setOriginatorNickName(String originatorNickName) {
this.originatorNickName = originatorNickName;
return this;
}
public String getOriginatorNickName() {
return this.originatorNickName;
}
public GetCorpTasksResponseBodyData setOriginatorNickNameEn(String originatorNickNameEn) {
this.originatorNickNameEn = originatorNickNameEn;
return this;
}
public String getOriginatorNickNameEn() {
return this.originatorNickNameEn;
}
public GetCorpTasksResponseBodyData setOriginatorNickNameInEnglish(String originatorNickNameInEnglish) {
this.originatorNickNameInEnglish = originatorNickNameInEnglish;
return this;
}
public String getOriginatorNickNameInEnglish() {
return this.originatorNickNameInEnglish;
}
public GetCorpTasksResponseBodyData setOriginatorPhoto(String originatorPhoto) {
this.originatorPhoto = originatorPhoto;
return this;
}
public String getOriginatorPhoto() {
return this.originatorPhoto;
}
public GetCorpTasksResponseBodyData setOutResult(String outResult) {
this.outResult = outResult;
return this;
}
public String getOutResult() {
return this.outResult;
}
public GetCorpTasksResponseBodyData setOutResultName(String outResultName) {
this.outResultName = outResultName;
return this;
}
public String getOutResultName() {
return this.outResultName;
}
public GetCorpTasksResponseBodyData setProcessInstanceId(String processInstanceId) {
this.processInstanceId = processInstanceId;
return this;
}
public String getProcessInstanceId() {
return this.processInstanceId;
}
public GetCorpTasksResponseBodyData setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetCorpTasksResponseBodyData setTaskId(String taskId) {
this.taskId = taskId;
return this;
}
public String getTaskId() {
return this.taskId;
}
public GetCorpTasksResponseBodyData setTaskType(String taskType) {
this.taskType = taskType;
return this;
}
public String getTaskType() {
return this.taskType;
}
public GetCorpTasksResponseBodyData setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public GetCorpTasksResponseBodyData setTitleInEnglish(String titleInEnglish) {
this.titleInEnglish = titleInEnglish;
return this;
}
public String getTitleInEnglish() {
return this.titleInEnglish;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetCorpTasksShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetCorpTasksShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetCorpTasksShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetCorpTasksShrinkHeaders self = new GetCorpTasksShrinkHeaders();
return TeaModel.build(map, self);
}
public GetCorpTasksShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetCorpTasksShrinkHeaders 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/GetDeptNoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetDeptNoHeadersAccountContext accountContext;
public static GetDeptNoHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoHeaders self = new GetDeptNoHeaders();
return TeaModel.build(map, self);
}
public GetDeptNoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDeptNoHeaders setAccountContext(GetDeptNoHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetDeptNoHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetDeptNoHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetDeptNoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoHeadersAccountContext self = new GetDeptNoHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetDeptNoHeadersAccountContext 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/GetDeptNoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoRequest extends TeaModel {
@NameInMap("TenantContext")
public GetDeptNoRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("deptId")
public String deptId;
public static GetDeptNoRequest build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoRequest self = new GetDeptNoRequest();
return TeaModel.build(map, self);
}
public GetDeptNoRequest setTenantContext(GetDeptNoRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetDeptNoRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetDeptNoRequest setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
public static class GetDeptNoRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetDeptNoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoRequestTenantContext self = new GetDeptNoRequestTenantContext();
return TeaModel.build(map, self);
}
public GetDeptNoRequestTenantContext 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/GetDeptNoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetDeptNoResponseBody body;
public static GetDeptNoResponse build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoResponse self = new GetDeptNoResponse();
return TeaModel.build(map, self);
}
public GetDeptNoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetDeptNoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetDeptNoResponse setBody(GetDeptNoResponseBody body) {
this.body = body;
return this;
}
public GetDeptNoResponseBody 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/GetDeptNoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>12345</p>
*/
@NameInMap("deptNo")
public String deptNo;
/**
* <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 GetDeptNoResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoResponseBody self = new GetDeptNoResponseBody();
return TeaModel.build(map, self);
}
public GetDeptNoResponseBody setDeptNo(String deptNo) {
this.deptNo = deptNo;
return this;
}
public String getDeptNo() {
return this.deptNo;
}
public GetDeptNoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetDeptNoResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetDeptNoResponseBody 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/GetDeptNoShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetDeptNoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoShrinkHeaders self = new GetDeptNoShrinkHeaders();
return TeaModel.build(map, self);
}
public GetDeptNoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDeptNoShrinkHeaders 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/GetDeptNoShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDeptNoShrinkRequest extends TeaModel {
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("deptId")
public String deptId;
public static GetDeptNoShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetDeptNoShrinkRequest self = new GetDeptNoShrinkRequest();
return TeaModel.build(map, self);
}
public GetDeptNoShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetDeptNoShrinkRequest setDeptId(String deptId) {
this.deptId = deptId;
return this;
}
public String getDeptId() {
return this.deptId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetDocContentHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetDocContentHeadersAccountContext accountContext;
public static GetDocContentHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDocContentHeaders self = new GetDocContentHeaders();
return TeaModel.build(map, self);
}
public GetDocContentHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDocContentHeaders setAccountContext(GetDocContentHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetDocContentHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetDocContentHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>ba3a9b612345678d8fedf544ef69d19e</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetDocContentHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetDocContentHeadersAccountContext self = new GetDocContentHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetDocContentHeadersAccountContext 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/GetDocContentRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>dentry_uuid</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("TargetFormat")
public String targetFormat;
@NameInMap("TenantContext")
public GetDocContentRequestTenantContext tenantContext;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("userToken")
public String userToken;
public static GetDocContentRequest build(java.util.Map<String, ?> map) throws Exception {
GetDocContentRequest self = new GetDocContentRequest();
return TeaModel.build(map, self);
}
public GetDocContentRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public GetDocContentRequest setTargetFormat(String targetFormat) {
this.targetFormat = targetFormat;
return this;
}
public String getTargetFormat() {
return this.targetFormat;
}
public GetDocContentRequest setTenantContext(GetDocContentRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetDocContentRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public GetDocContentRequest setUserToken(String userToken) {
this.userToken = userToken;
return this;
}
public String getUserToken() {
return this.userToken;
}
public static class GetDocContentRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetDocContentRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetDocContentRequestTenantContext self = new GetDocContentRequestTenantContext();
return TeaModel.build(map, self);
}
public GetDocContentRequestTenantContext 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/GetDocContentResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetDocContentResponseBody body;
public static GetDocContentResponse build(java.util.Map<String, ?> map) throws Exception {
GetDocContentResponse self = new GetDocContentResponse();
return TeaModel.build(map, self);
}
public GetDocContentResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetDocContentResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetDocContentResponse setBody(GetDocContentResponseBody body) {
this.body = body;
return this;
}
public GetDocContentResponseBody 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/GetDocContentResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>task123abc</p>
*/
@NameInMap("taskId")
public Long taskId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetDocContentResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetDocContentResponseBody self = new GetDocContentResponseBody();
return TeaModel.build(map, self);
}
public GetDocContentResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetDocContentResponseBody setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
public GetDocContentResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetDocContentResponseBody 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/GetDocContentShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetDocContentShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDocContentShrinkHeaders self = new GetDocContentShrinkHeaders();
return TeaModel.build(map, self);
}
public GetDocContentShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDocContentShrinkHeaders 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/GetDocContentShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>dentry_uuid</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("TargetFormat")
public String targetFormat;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("userToken")
public String userToken;
public static GetDocContentShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetDocContentShrinkRequest self = new GetDocContentShrinkRequest();
return TeaModel.build(map, self);
}
public GetDocContentShrinkRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public GetDocContentShrinkRequest setTargetFormat(String targetFormat) {
this.targetFormat = targetFormat;
return this;
}
public String getTargetFormat() {
return this.targetFormat;
}
public GetDocContentShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public GetDocContentShrinkRequest setUserToken(String userToken) {
this.userToken = userToken;
return this;
}
public String getUserToken() {
return this.userToken;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetDocContentTakIdHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetDocContentTakIdHeadersAccountContext accountContext;
public static GetDocContentTakIdHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdHeaders self = new GetDocContentTakIdHeaders();
return TeaModel.build(map, self);
}
public GetDocContentTakIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDocContentTakIdHeaders setAccountContext(GetDocContentTakIdHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetDocContentTakIdHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetDocContentTakIdHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetDocContentTakIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdHeadersAccountContext self = new GetDocContentTakIdHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetDocContentTakIdHeadersAccountContext 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/GetDocContentTakIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>qnYMoO1rWxrkmoj2I5L2PYkoJ47Z3je9</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
@NameInMap("GenerateCp")
public Boolean generateCp;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("TargetFormat")
public String targetFormat;
@NameInMap("TenantContext")
public GetDocContentTakIdRequestTenantContext tenantContext;
public static GetDocContentTakIdRequest build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdRequest self = new GetDocContentTakIdRequest();
return TeaModel.build(map, self);
}
public GetDocContentTakIdRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public GetDocContentTakIdRequest setGenerateCp(Boolean generateCp) {
this.generateCp = generateCp;
return this;
}
public Boolean getGenerateCp() {
return this.generateCp;
}
public GetDocContentTakIdRequest setTargetFormat(String targetFormat) {
this.targetFormat = targetFormat;
return this;
}
public String getTargetFormat() {
return this.targetFormat;
}
public GetDocContentTakIdRequest setTenantContext(GetDocContentTakIdRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetDocContentTakIdRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetDocContentTakIdRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetDocContentTakIdRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdRequestTenantContext self = new GetDocContentTakIdRequestTenantContext();
return TeaModel.build(map, self);
}
public GetDocContentTakIdRequestTenantContext 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/GetDocContentTakIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetDocContentTakIdResponseBody body;
public static GetDocContentTakIdResponse build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdResponse self = new GetDocContentTakIdResponse();
return TeaModel.build(map, self);
}
public GetDocContentTakIdResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetDocContentTakIdResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetDocContentTakIdResponse setBody(GetDocContentTakIdResponseBody body) {
this.body = body;
return this;
}
public GetDocContentTakIdResponseBody 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/GetDocContentTakIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>72652830001</p>
*/
@NameInMap("taskId")
public Long taskId;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetDocContentTakIdResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdResponseBody self = new GetDocContentTakIdResponseBody();
return TeaModel.build(map, self);
}
public GetDocContentTakIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetDocContentTakIdResponseBody setTaskId(Long taskId) {
this.taskId = taskId;
return this;
}
public Long getTaskId() {
return this.taskId;
}
public GetDocContentTakIdResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetDocContentTakIdResponseBody 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/GetDocContentTakIdShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetDocContentTakIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdShrinkHeaders self = new GetDocContentTakIdShrinkHeaders();
return TeaModel.build(map, self);
}
public GetDocContentTakIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetDocContentTakIdShrinkHeaders 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/GetDocContentTakIdShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetDocContentTakIdShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>qnYMoO1rWxrkmoj2I5L2PYkoJ47Z3je9</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
@NameInMap("GenerateCp")
public Boolean generateCp;
/**
* <strong>example:</strong>
* <p>markdown</p>
*/
@NameInMap("TargetFormat")
public String targetFormat;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetDocContentTakIdShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetDocContentTakIdShrinkRequest self = new GetDocContentTakIdShrinkRequest();
return TeaModel.build(map, self);
}
public GetDocContentTakIdShrinkRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public GetDocContentTakIdShrinkRequest setGenerateCp(Boolean generateCp) {
this.generateCp = generateCp;
return this;
}
public Boolean getGenerateCp() {
return this.generateCp;
}
public GetDocContentTakIdShrinkRequest setTargetFormat(String targetFormat) {
this.targetFormat = targetFormat;
return this;
}
public String getTargetFormat() {
return this.targetFormat;
}
public GetDocContentTakIdShrinkRequest 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/GetEventHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetEventHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetEventHeadersAccountContext accountContext;
public static GetEventHeaders build(java.util.Map<String, ?> map) throws Exception {
GetEventHeaders self = new GetEventHeaders();
return TeaModel.build(map, self);
}
public GetEventHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetEventHeaders setAccountContext(GetEventHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetEventHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetEventHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetEventHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetEventHeadersAccountContext self = new GetEventHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetEventHeadersAccountContext 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/GetEventRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetEventRequest 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>311525211</p>
*/
@NameInMap("EventId")
public String eventId;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxAttendees")
public Long maxAttendees;
public static GetEventRequest build(java.util.Map<String, ?> map) throws Exception {
GetEventRequest self = new GetEventRequest();
return TeaModel.build(map, self);
}
public GetEventRequest setCalendarId(String calendarId) {
this.calendarId = calendarId;
return this;
}
public String getCalendarId() {
return this.calendarId;
}
public GetEventRequest setEventId(String eventId) {
this.eventId = eventId;
return this;
}
public String getEventId() {
return this.eventId;
}
public GetEventRequest setMaxAttendees(Long maxAttendees) {
this.maxAttendees = maxAttendees;
return this;
}
public Long getMaxAttendees() {
return this.maxAttendees;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetEventResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetEventResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetEventResponseBody body;
public static GetEventResponse build(java.util.Map<String, ?> map) throws Exception {
GetEventResponse self = new GetEventResponse();
return TeaModel.build(map, self);
}
public GetEventResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetEventResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetEventResponse setBody(GetEventResponseBody body) {
this.body = body;
return this;
}
public GetEventResponseBody 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/GetEventResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetEventResponseBody extends TeaModel {
@NameInMap("attendees")
public java.util.List<GetEventResponseBodyAttendees> attendees;
@NameInMap("categories")
public java.util.List<GetEventResponseBodyCategories> categories;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("createTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("description")
public String description;
@NameInMap("end")
public GetEventResponseBodyEnd end;
@NameInMap("extendedProperties")
public GetEventResponseBodyExtendedProperties extendedProperties;
/**
* <strong>example:</strong>
* <p>iiiP35sJxxxxPRKgiEiF</p>
*/
@NameInMap("id")
public String id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("isAllDay")
public Boolean isAllDay;
@NameInMap("location")
public GetEventResponseBodyLocation location;
@NameInMap("meetingRooms")
public java.util.List<GetEventResponseBodyMeetingRooms> meetingRooms;
@NameInMap("onlineMeetingInfo")
public GetEventResponseBodyOnlineMeetingInfo onlineMeetingInfo;
@NameInMap("organizer")
public GetEventResponseBodyOrganizer organizer;
@NameInMap("originStart")
public GetEventResponseBodyOriginStart originStart;
@NameInMap("recurrence")
public GetEventResponseBodyRecurrence recurrence;
@NameInMap("reminders")
public java.util.List<GetEventResponseBodyReminders> reminders;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>requestId</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("richTextDescription")
public GetEventResponseBodyRichTextDescription richTextDescription;
/**
* <strong>example:</strong>
* <p>cnNTbW1YbxxxxvdlQrQT09</p>
*/
@NameInMap("seriesMasterId")
public String seriesMasterId;
@NameInMap("start")
public GetEventResponseBodyStart start;
/**
* <strong>example:</strong>
* <p>confirmed</p>
*/
@NameInMap("status")
public String status;
/**
* <strong>example:</strong>
* <p>test event</p>
*/
@NameInMap("summary")
public String summary;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("updateTime")
public String updateTime;
public static GetEventResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBody self = new GetEventResponseBody();
return TeaModel.build(map, self);
}
public GetEventResponseBody setAttendees(java.util.List<GetEventResponseBodyAttendees> attendees) {
this.attendees = attendees;
return this;
}
public java.util.List<GetEventResponseBodyAttendees> getAttendees() {
return this.attendees;
}
public GetEventResponseBody setCategories(java.util.List<GetEventResponseBodyCategories> categories) {
this.categories = categories;
return this;
}
public java.util.List<GetEventResponseBodyCategories> getCategories() {
return this.categories;
}
public GetEventResponseBody setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public GetEventResponseBody setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public GetEventResponseBody setEnd(GetEventResponseBodyEnd end) {
this.end = end;
return this;
}
public GetEventResponseBodyEnd getEnd() {
return this.end;
}
public GetEventResponseBody setExtendedProperties(GetEventResponseBodyExtendedProperties extendedProperties) {
this.extendedProperties = extendedProperties;
return this;
}
public GetEventResponseBodyExtendedProperties getExtendedProperties() {
return this.extendedProperties;
}
public GetEventResponseBody setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetEventResponseBody setIsAllDay(Boolean isAllDay) {
this.isAllDay = isAllDay;
return this;
}
public Boolean getIsAllDay() {
return this.isAllDay;
}
public GetEventResponseBody setLocation(GetEventResponseBodyLocation location) {
this.location = location;
return this;
}
public GetEventResponseBodyLocation getLocation() {
return this.location;
}
public GetEventResponseBody setMeetingRooms(java.util.List<GetEventResponseBodyMeetingRooms> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<GetEventResponseBodyMeetingRooms> getMeetingRooms() {
return this.meetingRooms;
}
public GetEventResponseBody setOnlineMeetingInfo(GetEventResponseBodyOnlineMeetingInfo onlineMeetingInfo) {
this.onlineMeetingInfo = onlineMeetingInfo;
return this;
}
public GetEventResponseBodyOnlineMeetingInfo getOnlineMeetingInfo() {
return this.onlineMeetingInfo;
}
public GetEventResponseBody setOrganizer(GetEventResponseBodyOrganizer organizer) {
this.organizer = organizer;
return this;
}
public GetEventResponseBodyOrganizer getOrganizer() {
return this.organizer;
}
public GetEventResponseBody setOriginStart(GetEventResponseBodyOriginStart originStart) {
this.originStart = originStart;
return this;
}
public GetEventResponseBodyOriginStart getOriginStart() {
return this.originStart;
}
public GetEventResponseBody setRecurrence(GetEventResponseBodyRecurrence recurrence) {
this.recurrence = recurrence;
return this;
}
public GetEventResponseBodyRecurrence getRecurrence() {
return this.recurrence;
}
public GetEventResponseBody setReminders(java.util.List<GetEventResponseBodyReminders> reminders) {
this.reminders = reminders;
return this;
}
public java.util.List<GetEventResponseBodyReminders> getReminders() {
return this.reminders;
}
public GetEventResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetEventResponseBody setRichTextDescription(GetEventResponseBodyRichTextDescription richTextDescription) {
this.richTextDescription = richTextDescription;
return this;
}
public GetEventResponseBodyRichTextDescription getRichTextDescription() {
return this.richTextDescription;
}
public GetEventResponseBody setSeriesMasterId(String seriesMasterId) {
this.seriesMasterId = seriesMasterId;
return this;
}
public String getSeriesMasterId() {
return this.seriesMasterId;
}
public GetEventResponseBody setStart(GetEventResponseBodyStart start) {
this.start = start;
return this;
}
public GetEventResponseBodyStart getStart() {
return this.start;
}
public GetEventResponseBody setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public GetEventResponseBody setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public GetEventResponseBody setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
public static class GetEventResponseBodyAttendees extends TeaModel {
/**
* <strong>example:</strong>
* <p>jack</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsOptional")
public Boolean isOptional;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Self")
public Boolean self;
public static GetEventResponseBodyAttendees build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyAttendees self = new GetEventResponseBodyAttendees();
return TeaModel.build(map, self);
}
public GetEventResponseBodyAttendees setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public GetEventResponseBodyAttendees setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetEventResponseBodyAttendees setIsOptional(Boolean isOptional) {
this.isOptional = isOptional;
return this;
}
public Boolean getIsOptional() {
return this.isOptional;
}
public GetEventResponseBodyAttendees setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public GetEventResponseBodyAttendees setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class GetEventResponseBodyCategories extends TeaModel {
@NameInMap("DisplayName")
public String displayName;
public static GetEventResponseBodyCategories build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyCategories self = new GetEventResponseBodyCategories();
return TeaModel.build(map, self);
}
public GetEventResponseBodyCategories setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
}
public static class GetEventResponseBodyEnd extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("Date")
public String date;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("DateTime")
public String dateTime;
/**
* <strong>example:</strong>
* <p>Asia/Shanghai</p>
*/
@NameInMap("TimeZone")
public String timeZone;
public static GetEventResponseBodyEnd build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyEnd self = new GetEventResponseBodyEnd();
return TeaModel.build(map, self);
}
public GetEventResponseBodyEnd setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public GetEventResponseBodyEnd setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public GetEventResponseBodyEnd setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class GetEventResponseBodyExtendedPropertiesSharedProperties extends TeaModel {
/**
* <strong>example:</strong>
* <p>dingd*****1231231</p>
*/
@NameInMap("BelongCorpId")
public String belongCorpId;
/**
* <strong>example:</strong>
* <p>zxcvasdfvb123====</p>
*/
@NameInMap("SourceOpenCid")
public String sourceOpenCid;
public static GetEventResponseBodyExtendedPropertiesSharedProperties build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyExtendedPropertiesSharedProperties self = new GetEventResponseBodyExtendedPropertiesSharedProperties();
return TeaModel.build(map, self);
}
public GetEventResponseBodyExtendedPropertiesSharedProperties setBelongCorpId(String belongCorpId) {
this.belongCorpId = belongCorpId;
return this;
}
public String getBelongCorpId() {
return this.belongCorpId;
}
public GetEventResponseBodyExtendedPropertiesSharedProperties setSourceOpenCid(String sourceOpenCid) {
this.sourceOpenCid = sourceOpenCid;
return this;
}
public String getSourceOpenCid() {
return this.sourceOpenCid;
}
}
public static class GetEventResponseBodyExtendedProperties extends TeaModel {
@NameInMap("SharedProperties")
public GetEventResponseBodyExtendedPropertiesSharedProperties sharedProperties;
public static GetEventResponseBodyExtendedProperties build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyExtendedProperties self = new GetEventResponseBodyExtendedProperties();
return TeaModel.build(map, self);
}
public GetEventResponseBodyExtendedProperties setSharedProperties(GetEventResponseBodyExtendedPropertiesSharedProperties sharedProperties) {
this.sharedProperties = sharedProperties;
return this;
}
public GetEventResponseBodyExtendedPropertiesSharedProperties getSharedProperties() {
return this.sharedProperties;
}
}
public static class GetEventResponseBodyLocation extends TeaModel {
@NameInMap("DisplayName")
public String displayName;
/**
* <p>--</p>
*/
@NameInMap("MeetingRooms")
public java.util.List<String> meetingRooms;
public static GetEventResponseBodyLocation build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyLocation self = new GetEventResponseBodyLocation();
return TeaModel.build(map, self);
}
public GetEventResponseBodyLocation setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public GetEventResponseBodyLocation setMeetingRooms(java.util.List<String> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<String> getMeetingRooms() {
return this.meetingRooms;
}
}
public static class GetEventResponseBodyMeetingRooms extends TeaModel {
/**
* <strong>example:</strong>
* <p>room 1-2-3</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>c10315a8b4e740a317813ab6fxxxxxx</p>
*/
@NameInMap("RoomId")
public String roomId;
public static GetEventResponseBodyMeetingRooms build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyMeetingRooms self = new GetEventResponseBodyMeetingRooms();
return TeaModel.build(map, self);
}
public GetEventResponseBodyMeetingRooms setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public GetEventResponseBodyMeetingRooms setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public GetEventResponseBodyMeetingRooms setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
}
public static class GetEventResponseBodyOnlineMeetingInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>5c4df21d-xxxx-a6db402b9f3a</p>
*/
@NameInMap("ConferenceId")
public String conferenceId;
@NameInMap("ExtraInfo")
public java.util.Map<String, ?> extraInfo;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>dingtalk://dingtalkclient/page/videoxxxxalendar?confId=5c4df21d-xxxx9f3f&calendarId=127xxxx124</p>
*/
@NameInMap("Url")
public String url;
public static GetEventResponseBodyOnlineMeetingInfo build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyOnlineMeetingInfo self = new GetEventResponseBodyOnlineMeetingInfo();
return TeaModel.build(map, self);
}
public GetEventResponseBodyOnlineMeetingInfo setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public GetEventResponseBodyOnlineMeetingInfo setExtraInfo(java.util.Map<String, ?> extraInfo) {
this.extraInfo = extraInfo;
return this;
}
public java.util.Map<String, ?> getExtraInfo() {
return this.extraInfo;
}
public GetEventResponseBodyOnlineMeetingInfo setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public GetEventResponseBodyOnlineMeetingInfo setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class GetEventResponseBodyOrganizer extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Self")
public Boolean self;
public static GetEventResponseBodyOrganizer build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyOrganizer self = new GetEventResponseBodyOrganizer();
return TeaModel.build(map, self);
}
public GetEventResponseBodyOrganizer setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public GetEventResponseBodyOrganizer setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetEventResponseBodyOrganizer setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public GetEventResponseBodyOrganizer setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class GetEventResponseBodyOriginStart extends TeaModel {
/**
* <strong>example:</strong>
* <p>2023-01-01T00:00:00Z</p>
*/
@NameInMap("DateTime")
public String dateTime;
public static GetEventResponseBodyOriginStart build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyOriginStart self = new GetEventResponseBodyOriginStart();
return TeaModel.build(map, self);
}
public GetEventResponseBodyOriginStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
}
public static class GetEventResponseBodyRecurrencePattern extends TeaModel {
/**
* <strong>example:</strong>
* <p>14</p>
*/
@NameInMap("DayOfMonth")
public Integer dayOfMonth;
/**
* <strong>example:</strong>
* <p>monday</p>
*/
@NameInMap("DaysOfWeek")
public String daysOfWeek;
/**
* <strong>example:</strong>
* <p>first</p>
*/
@NameInMap("Index")
public String index;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Interval")
public Integer interval;
/**
* <strong>example:</strong>
* <p>daily</p>
*/
@NameInMap("Type")
public String type;
public static GetEventResponseBodyRecurrencePattern build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyRecurrencePattern self = new GetEventResponseBodyRecurrencePattern();
return TeaModel.build(map, self);
}
public GetEventResponseBodyRecurrencePattern setDayOfMonth(Integer dayOfMonth) {
this.dayOfMonth = dayOfMonth;
return this;
}
public Integer getDayOfMonth() {
return this.dayOfMonth;
}
public GetEventResponseBodyRecurrencePattern setDaysOfWeek(String daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public String getDaysOfWeek() {
return this.daysOfWeek;
}
public GetEventResponseBodyRecurrencePattern setIndex(String index) {
this.index = index;
return this;
}
public String getIndex() {
return this.index;
}
public GetEventResponseBodyRecurrencePattern setInterval(Integer interval) {
this.interval = interval;
return this;
}
public Integer getInterval() {
return this.interval;
}
public GetEventResponseBodyRecurrencePattern setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetEventResponseBodyRecurrenceRange extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("EndDate")
public String endDate;
/**
* <strong>example:</strong>
* <p>5</p>
*/
@NameInMap("NumberOfOccurrences")
public Integer numberOfOccurrences;
/**
* <strong>example:</strong>
* <p>noEnd</p>
*/
@NameInMap("Type")
public String type;
public static GetEventResponseBodyRecurrenceRange build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyRecurrenceRange self = new GetEventResponseBodyRecurrenceRange();
return TeaModel.build(map, self);
}
public GetEventResponseBodyRecurrenceRange setEndDate(String endDate) {
this.endDate = endDate;
return this;
}
public String getEndDate() {
return this.endDate;
}
public GetEventResponseBodyRecurrenceRange setNumberOfOccurrences(Integer numberOfOccurrences) {
this.numberOfOccurrences = numberOfOccurrences;
return this;
}
public Integer getNumberOfOccurrences() {
return this.numberOfOccurrences;
}
public GetEventResponseBodyRecurrenceRange setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetEventResponseBodyRecurrence extends TeaModel {
@NameInMap("Pattern")
public GetEventResponseBodyRecurrencePattern pattern;
@NameInMap("Range")
public GetEventResponseBodyRecurrenceRange range;
public static GetEventResponseBodyRecurrence build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyRecurrence self = new GetEventResponseBodyRecurrence();
return TeaModel.build(map, self);
}
public GetEventResponseBodyRecurrence setPattern(GetEventResponseBodyRecurrencePattern pattern) {
this.pattern = pattern;
return this;
}
public GetEventResponseBodyRecurrencePattern getPattern() {
return this.pattern;
}
public GetEventResponseBodyRecurrence setRange(GetEventResponseBodyRecurrenceRange range) {
this.range = range;
return this;
}
public GetEventResponseBodyRecurrenceRange getRange() {
return this.range;
}
}
public static class GetEventResponseBodyReminders extends TeaModel {
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("Method")
public String method;
/**
* <strong>example:</strong>
* <p>15</p>
*/
@NameInMap("Minutes")
public String minutes;
public static GetEventResponseBodyReminders build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyReminders self = new GetEventResponseBodyReminders();
return TeaModel.build(map, self);
}
public GetEventResponseBodyReminders setMethod(String method) {
this.method = method;
return this;
}
public String getMethod() {
return this.method;
}
public GetEventResponseBodyReminders setMinutes(String minutes) {
this.minutes = minutes;
return this;
}
public String getMinutes() {
return this.minutes;
}
}
public static class GetEventResponseBodyRichTextDescription extends TeaModel {
@NameInMap("Text")
public String text;
public static GetEventResponseBodyRichTextDescription build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyRichTextDescription self = new GetEventResponseBodyRichTextDescription();
return TeaModel.build(map, self);
}
public GetEventResponseBodyRichTextDescription setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
public static class GetEventResponseBodyStart extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01</p>
*/
@NameInMap("Date")
public String date;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("DateTime")
public String dateTime;
/**
* <strong>example:</strong>
* <p>Asia/Shanghai</p>
*/
@NameInMap("TimeZone")
public String timeZone;
public static GetEventResponseBodyStart build(java.util.Map<String, ?> map) throws Exception {
GetEventResponseBodyStart self = new GetEventResponseBodyStart();
return TeaModel.build(map, self);
}
public GetEventResponseBodyStart setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public GetEventResponseBodyStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public GetEventResponseBodyStart setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetEventShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetEventShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetEventShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetEventShrinkHeaders self = new GetEventShrinkHeaders();
return TeaModel.build(map, self);
}
public GetEventShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetEventShrinkHeaders 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/GetFieldDefByUuidHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFieldDefByUuidHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFieldDefByUuidHeadersAccountContext accountContext;
public static GetFieldDefByUuidHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidHeaders self = new GetFieldDefByUuidHeaders();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFieldDefByUuidHeaders setAccountContext(GetFieldDefByUuidHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFieldDefByUuidHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFieldDefByUuidHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFieldDefByUuidHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidHeadersAccountContext self = new GetFieldDefByUuidHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidHeadersAccountContext 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/GetFieldDefByUuidRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFieldDefByUuidRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKT0xxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FORM-xxxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetFieldDefByUuidRequest build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidRequest self = new GetFieldDefByUuidRequest();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetFieldDefByUuidRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetFieldDefByUuidRequest 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/GetFieldDefByUuidResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFieldDefByUuidResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFieldDefByUuidResponseBody body;
public static GetFieldDefByUuidResponse build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidResponse self = new GetFieldDefByUuidResponse();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFieldDefByUuidResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFieldDefByUuidResponse setBody(GetFieldDefByUuidResponseBody body) {
this.body = body;
return this;
}
public GetFieldDefByUuidResponseBody 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/GetFieldDefByUuidResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFieldDefByUuidResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public java.util.List<GetFieldDefByUuidResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("success")
public Boolean success;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetFieldDefByUuidResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidResponseBody self = new GetFieldDefByUuidResponseBody();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFieldDefByUuidResponseBody setResult(java.util.List<GetFieldDefByUuidResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetFieldDefByUuidResponseBodyResult> getResult() {
return this.result;
}
public GetFieldDefByUuidResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public GetFieldDefByUuidResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFieldDefByUuidResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFieldDefByUuidResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>NORMAL</p>
*/
@NameInMap("Behavior")
public String behavior;
@NameInMap("Children")
public String children;
/**
* <strong>example:</strong>
* <p>TextareaField</p>
*/
@NameInMap("ComponentName")
public String componentName;
/**
* <strong>example:</strong>
* <p>textField_laq7xxx</p>
*/
@NameInMap("FieldId")
public String fieldId;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Label")
public Object label;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Props")
public Object props;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Success")
public Boolean success;
public static GetFieldDefByUuidResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidResponseBodyResult self = new GetFieldDefByUuidResponseBodyResult();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidResponseBodyResult setBehavior(String behavior) {
this.behavior = behavior;
return this;
}
public String getBehavior() {
return this.behavior;
}
public GetFieldDefByUuidResponseBodyResult setChildren(String children) {
this.children = children;
return this;
}
public String getChildren() {
return this.children;
}
public GetFieldDefByUuidResponseBodyResult setComponentName(String componentName) {
this.componentName = componentName;
return this;
}
public String getComponentName() {
return this.componentName;
}
public GetFieldDefByUuidResponseBodyResult setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public GetFieldDefByUuidResponseBodyResult setLabel(Object label) {
this.label = label;
return this;
}
public Object getLabel() {
return this.label;
}
public GetFieldDefByUuidResponseBodyResult setProps(Object props) {
this.props = props;
return this;
}
public Object getProps() {
return this.props;
}
public GetFieldDefByUuidResponseBodyResult 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/GetFieldDefByUuidShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFieldDefByUuidShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFieldDefByUuidShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFieldDefByUuidShrinkHeaders self = new GetFieldDefByUuidShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFieldDefByUuidShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFieldDefByUuidShrinkHeaders 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/GetFileDownloadInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFileDownloadInfoHeadersAccountContext accountContext;
public static GetFileDownloadInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoHeaders self = new GetFileDownloadInfoHeaders();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFileDownloadInfoHeaders setAccountContext(GetFileDownloadInfoHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFileDownloadInfoHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFileDownloadInfoHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFileDownloadInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoHeadersAccountContext self = new GetFileDownloadInfoHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoHeadersAccountContext 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/GetFileDownloadInfoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>798xxxxx</p>
*/
@NameInMap("DentryId")
public String dentryId;
@NameInMap("Option")
public GetFileDownloadInfoRequestOption option;
/**
* <strong>example:</strong>
* <p>854xxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public GetFileDownloadInfoRequestTenantContext tenantContext;
public static GetFileDownloadInfoRequest build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoRequest self = new GetFileDownloadInfoRequest();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoRequest setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public GetFileDownloadInfoRequest setOption(GetFileDownloadInfoRequestOption option) {
this.option = option;
return this;
}
public GetFileDownloadInfoRequestOption getOption() {
return this.option;
}
public GetFileDownloadInfoRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public GetFileDownloadInfoRequest setTenantContext(GetFileDownloadInfoRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetFileDownloadInfoRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetFileDownloadInfoRequestOption extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("PreferIntranet")
public Boolean preferIntranet;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Version")
public Long version;
public static GetFileDownloadInfoRequestOption build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoRequestOption self = new GetFileDownloadInfoRequestOption();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoRequestOption setPreferIntranet(Boolean preferIntranet) {
this.preferIntranet = preferIntranet;
return this;
}
public Boolean getPreferIntranet() {
return this.preferIntranet;
}
public GetFileDownloadInfoRequestOption setVersion(Long version) {
this.version = version;
return this;
}
public Long getVersion() {
return this.version;
}
}
public static class GetFileDownloadInfoRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetFileDownloadInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoRequestTenantContext self = new GetFileDownloadInfoRequestTenantContext();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoRequestTenantContext 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/GetFileDownloadInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFileDownloadInfoResponseBody body;
public static GetFileDownloadInfoResponse build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoResponse self = new GetFileDownloadInfoResponse();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFileDownloadInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFileDownloadInfoResponse setBody(GetFileDownloadInfoResponseBody body) {
this.body = body;
return this;
}
public GetFileDownloadInfoResponseBody 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/GetFileDownloadInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoResponseBody extends TeaModel {
@NameInMap("headerSignatureInfo")
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo headerSignatureInfo;
/**
* <strong>example:</strong>
* <p>HEADER_SIGNATURE</p>
*/
@NameInMap("protocol")
public String protocol;
/**
* <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 GetFileDownloadInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoResponseBody self = new GetFileDownloadInfoResponseBody();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoResponseBody setHeaderSignatureInfo(GetFileDownloadInfoResponseBodyHeaderSignatureInfo headerSignatureInfo) {
this.headerSignatureInfo = headerSignatureInfo;
return this;
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo getHeaderSignatureInfo() {
return this.headerSignatureInfo;
}
public GetFileDownloadInfoResponseBody setProtocol(String protocol) {
this.protocol = protocol;
return this;
}
public String getProtocol() {
return this.protocol;
}
public GetFileDownloadInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFileDownloadInfoResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFileDownloadInfoResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFileDownloadInfoResponseBodyHeaderSignatureInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>900</p>
*/
@NameInMap("ExpirationSeconds")
public Integer expirationSeconds;
@NameInMap("Headers")
public java.util.Map<String, String> headers;
@NameInMap("InternalResourceUrls")
public java.util.List<String> internalResourceUrls;
/**
* <strong>example:</strong>
* <p>ZHANGJIAKOU</p>
*/
@NameInMap("Region")
public String region;
@NameInMap("ResourceUrls")
public java.util.List<String> resourceUrls;
public static GetFileDownloadInfoResponseBodyHeaderSignatureInfo build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoResponseBodyHeaderSignatureInfo self = new GetFileDownloadInfoResponseBodyHeaderSignatureInfo();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo setExpirationSeconds(Integer expirationSeconds) {
this.expirationSeconds = expirationSeconds;
return this;
}
public Integer getExpirationSeconds() {
return this.expirationSeconds;
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo setInternalResourceUrls(java.util.List<String> internalResourceUrls) {
this.internalResourceUrls = internalResourceUrls;
return this;
}
public java.util.List<String> getInternalResourceUrls() {
return this.internalResourceUrls;
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
public GetFileDownloadInfoResponseBodyHeaderSignatureInfo setResourceUrls(java.util.List<String> resourceUrls) {
this.resourceUrls = resourceUrls;
return this;
}
public java.util.List<String> getResourceUrls() {
return this.resourceUrls;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetFileDownloadInfoShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFileDownloadInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoShrinkHeaders self = new GetFileDownloadInfoShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFileDownloadInfoShrinkHeaders 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/GetFileDownloadInfoShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileDownloadInfoShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>798xxxxx</p>
*/
@NameInMap("DentryId")
public String dentryId;
@NameInMap("Option")
public String optionShrink;
/**
* <strong>example:</strong>
* <p>854xxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetFileDownloadInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetFileDownloadInfoShrinkRequest self = new GetFileDownloadInfoShrinkRequest();
return TeaModel.build(map, self);
}
public GetFileDownloadInfoShrinkRequest setDentryId(String dentryId) {
this.dentryId = dentryId;
return this;
}
public String getDentryId() {
return this.dentryId;
}
public GetFileDownloadInfoShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public GetFileDownloadInfoShrinkRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public GetFileDownloadInfoShrinkRequest 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/GetFileUploadInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFileUploadInfoHeadersAccountContext accountContext;
public static GetFileUploadInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoHeaders self = new GetFileUploadInfoHeaders();
return TeaModel.build(map, self);
}
public GetFileUploadInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFileUploadInfoHeaders setAccountContext(GetFileUploadInfoHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFileUploadInfoHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFileUploadInfoHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFileUploadInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoHeadersAccountContext self = new GetFileUploadInfoHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFileUploadInfoHeadersAccountContext 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/GetFileUploadInfoRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoRequest extends TeaModel {
@NameInMap("Option")
public GetFileUploadInfoRequestOption option;
/**
* <strong>example:</strong>
* <p>dentryUuid</p>
*/
@NameInMap("ParentDentryUuid")
public String parentDentryUuid;
/**
* <strong>example:</strong>
* <p>HEADER_SIGNATURE</p>
*/
@NameInMap("Protocol")
public String protocol;
@NameInMap("TenantContext")
public GetFileUploadInfoRequestTenantContext tenantContext;
public static GetFileUploadInfoRequest build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoRequest self = new GetFileUploadInfoRequest();
return TeaModel.build(map, self);
}
public GetFileUploadInfoRequest setOption(GetFileUploadInfoRequestOption option) {
this.option = option;
return this;
}
public GetFileUploadInfoRequestOption getOption() {
return this.option;
}
public GetFileUploadInfoRequest setParentDentryUuid(String parentDentryUuid) {
this.parentDentryUuid = parentDentryUuid;
return this;
}
public String getParentDentryUuid() {
return this.parentDentryUuid;
}
public GetFileUploadInfoRequest setProtocol(String protocol) {
this.protocol = protocol;
return this;
}
public String getProtocol() {
return this.protocol;
}
public GetFileUploadInfoRequest setTenantContext(GetFileUploadInfoRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetFileUploadInfoRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetFileUploadInfoRequestOptionPreCheckParam extends TeaModel {
/**
* <strong>example:</strong>
* <p>None</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>None</p>
*/
@NameInMap("Size")
public Long size;
public static GetFileUploadInfoRequestOptionPreCheckParam build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoRequestOptionPreCheckParam self = new GetFileUploadInfoRequestOptionPreCheckParam();
return TeaModel.build(map, self);
}
public GetFileUploadInfoRequestOptionPreCheckParam setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetFileUploadInfoRequestOptionPreCheckParam setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
}
public static class GetFileUploadInfoRequestOption extends TeaModel {
@NameInMap("PreCheckParam")
public GetFileUploadInfoRequestOptionPreCheckParam preCheckParam;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("PreferIntranet")
public Boolean preferIntranet;
/**
* <strong>example:</strong>
* <p>ZHANGJIAKOU</p>
*/
@NameInMap("PreferRegion")
public String preferRegion;
/**
* <strong>example:</strong>
* <p>DINGTALK</p>
*/
@NameInMap("StorageDriver")
public String storageDriver;
public static GetFileUploadInfoRequestOption build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoRequestOption self = new GetFileUploadInfoRequestOption();
return TeaModel.build(map, self);
}
public GetFileUploadInfoRequestOption setPreCheckParam(GetFileUploadInfoRequestOptionPreCheckParam preCheckParam) {
this.preCheckParam = preCheckParam;
return this;
}
public GetFileUploadInfoRequestOptionPreCheckParam getPreCheckParam() {
return this.preCheckParam;
}
public GetFileUploadInfoRequestOption setPreferIntranet(Boolean preferIntranet) {
this.preferIntranet = preferIntranet;
return this;
}
public Boolean getPreferIntranet() {
return this.preferIntranet;
}
public GetFileUploadInfoRequestOption setPreferRegion(String preferRegion) {
this.preferRegion = preferRegion;
return this;
}
public String getPreferRegion() {
return this.preferRegion;
}
public GetFileUploadInfoRequestOption setStorageDriver(String storageDriver) {
this.storageDriver = storageDriver;
return this;
}
public String getStorageDriver() {
return this.storageDriver;
}
}
public static class GetFileUploadInfoRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetFileUploadInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoRequestTenantContext self = new GetFileUploadInfoRequestTenantContext();
return TeaModel.build(map, self);
}
public GetFileUploadInfoRequestTenantContext 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/GetFileUploadInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFileUploadInfoResponseBody body;
public static GetFileUploadInfoResponse build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoResponse self = new GetFileUploadInfoResponse();
return TeaModel.build(map, self);
}
public GetFileUploadInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFileUploadInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFileUploadInfoResponse setBody(GetFileUploadInfoResponseBody body) {
this.body = body;
return this;
}
public GetFileUploadInfoResponseBody 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/GetFileUploadInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoResponseBody extends TeaModel {
@NameInMap("headerSignatureInfo")
public GetFileUploadInfoResponseBodyHeaderSignatureInfo headerSignatureInfo;
/**
* <strong>example:</strong>
* <p>HEADER_SIGNATURE</p>
*/
@NameInMap("protocol")
public String protocol;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>DINGTALK</p>
*/
@NameInMap("storageDriver")
public String storageDriver;
/**
* <strong>example:</strong>
* <p>upload_key</p>
*/
@NameInMap("uploadKey")
public String uploadKey;
/**
* <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 GetFileUploadInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoResponseBody self = new GetFileUploadInfoResponseBody();
return TeaModel.build(map, self);
}
public GetFileUploadInfoResponseBody setHeaderSignatureInfo(GetFileUploadInfoResponseBodyHeaderSignatureInfo headerSignatureInfo) {
this.headerSignatureInfo = headerSignatureInfo;
return this;
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo getHeaderSignatureInfo() {
return this.headerSignatureInfo;
}
public GetFileUploadInfoResponseBody setProtocol(String protocol) {
this.protocol = protocol;
return this;
}
public String getProtocol() {
return this.protocol;
}
public GetFileUploadInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFileUploadInfoResponseBody setStorageDriver(String storageDriver) {
this.storageDriver = storageDriver;
return this;
}
public String getStorageDriver() {
return this.storageDriver;
}
public GetFileUploadInfoResponseBody setUploadKey(String uploadKey) {
this.uploadKey = uploadKey;
return this;
}
public String getUploadKey() {
return this.uploadKey;
}
public GetFileUploadInfoResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFileUploadInfoResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFileUploadInfoResponseBodyHeaderSignatureInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>900</p>
*/
@NameInMap("ExpirationSeconds")
public Integer expirationSeconds;
@NameInMap("Headers")
public java.util.Map<String, String> headers;
@NameInMap("InternalResourceUrls")
public java.util.List<String> internalResourceUrls;
/**
* <strong>example:</strong>
* <p>ZHANGJIAKOU</p>
*/
@NameInMap("Region")
public String region;
@NameInMap("ResourceUrls")
public java.util.List<String> resourceUrls;
public static GetFileUploadInfoResponseBodyHeaderSignatureInfo build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoResponseBodyHeaderSignatureInfo self = new GetFileUploadInfoResponseBodyHeaderSignatureInfo();
return TeaModel.build(map, self);
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo setExpirationSeconds(Integer expirationSeconds) {
this.expirationSeconds = expirationSeconds;
return this;
}
public Integer getExpirationSeconds() {
return this.expirationSeconds;
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo setInternalResourceUrls(java.util.List<String> internalResourceUrls) {
this.internalResourceUrls = internalResourceUrls;
return this;
}
public java.util.List<String> getInternalResourceUrls() {
return this.internalResourceUrls;
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo setRegion(String region) {
this.region = region;
return this;
}
public String getRegion() {
return this.region;
}
public GetFileUploadInfoResponseBodyHeaderSignatureInfo setResourceUrls(java.util.List<String> resourceUrls) {
this.resourceUrls = resourceUrls;
return this;
}
public java.util.List<String> getResourceUrls() {
return this.resourceUrls;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetFileUploadInfoShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFileUploadInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoShrinkHeaders self = new GetFileUploadInfoShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFileUploadInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFileUploadInfoShrinkHeaders 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/GetFileUploadInfoShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFileUploadInfoShrinkRequest extends TeaModel {
@NameInMap("Option")
public String optionShrink;
/**
* <strong>example:</strong>
* <p>dentryUuid</p>
*/
@NameInMap("ParentDentryUuid")
public String parentDentryUuid;
/**
* <strong>example:</strong>
* <p>HEADER_SIGNATURE</p>
*/
@NameInMap("Protocol")
public String protocol;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetFileUploadInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetFileUploadInfoShrinkRequest self = new GetFileUploadInfoShrinkRequest();
return TeaModel.build(map, self);
}
public GetFileUploadInfoShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public GetFileUploadInfoShrinkRequest setParentDentryUuid(String parentDentryUuid) {
this.parentDentryUuid = parentDentryUuid;
return this;
}
public String getParentDentryUuid() {
return this.parentDentryUuid;
}
public GetFileUploadInfoShrinkRequest setProtocol(String protocol) {
this.protocol = protocol;
return this;
}
public String getProtocol() {
return this.protocol;
}
public GetFileUploadInfoShrinkRequest 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/GetFormComponentDefinitionListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormComponentDefinitionListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFormComponentDefinitionListHeadersAccountContext accountContext;
public static GetFormComponentDefinitionListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListHeaders self = new GetFormComponentDefinitionListHeaders();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormComponentDefinitionListHeaders setAccountContext(GetFormComponentDefinitionListHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFormComponentDefinitionListHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFormComponentDefinitionListHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFormComponentDefinitionListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListHeadersAccountContext self = new GetFormComponentDefinitionListHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListHeadersAccountContext 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/GetFormComponentDefinitionListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormComponentDefinitionListRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKT0xxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FORM-xxxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <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 GetFormComponentDefinitionListRequest build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListRequest self = new GetFormComponentDefinitionListRequest();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetFormComponentDefinitionListRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetFormComponentDefinitionListRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetFormComponentDefinitionListRequest 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/GetFormComponentDefinitionListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormComponentDefinitionListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFormComponentDefinitionListResponseBody body;
public static GetFormComponentDefinitionListResponse build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListResponse self = new GetFormComponentDefinitionListResponse();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFormComponentDefinitionListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFormComponentDefinitionListResponse setBody(GetFormComponentDefinitionListResponseBody body) {
this.body = body;
return this;
}
public GetFormComponentDefinitionListResponseBody 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/GetFormComponentDefinitionListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormComponentDefinitionListResponseBody extends TeaModel {
@NameInMap("Result")
public java.util.List<GetFormComponentDefinitionListResponseBodyResult> result;
/**
* <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 GetFormComponentDefinitionListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListResponseBody self = new GetFormComponentDefinitionListResponseBody();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListResponseBody setResult(java.util.List<GetFormComponentDefinitionListResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetFormComponentDefinitionListResponseBodyResult> getResult() {
return this.result;
}
public GetFormComponentDefinitionListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFormComponentDefinitionListResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFormComponentDefinitionListResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFormComponentDefinitionListResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>FooterYida</p>
*/
@NameInMap("ComponentName")
public String componentName;
/**
* <strong>example:</strong>
* <p>formContainer_kksjiuk</p>
*/
@NameInMap("FieldId")
public String fieldId;
/**
* <strong>example:</strong>
* <p>{"en_US":""}</p>
*/
@NameInMap("Label")
public String label;
/**
* <strong>example:</strong>
* <p>formContainer_kksjiuk</p>
*/
@NameInMap("ParentId")
public String parentId;
public static GetFormComponentDefinitionListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListResponseBodyResult self = new GetFormComponentDefinitionListResponseBodyResult();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListResponseBodyResult setComponentName(String componentName) {
this.componentName = componentName;
return this;
}
public String getComponentName() {
return this.componentName;
}
public GetFormComponentDefinitionListResponseBodyResult setFieldId(String fieldId) {
this.fieldId = fieldId;
return this;
}
public String getFieldId() {
return this.fieldId;
}
public GetFormComponentDefinitionListResponseBodyResult setLabel(String label) {
this.label = label;
return this;
}
public String getLabel() {
return this.label;
}
public GetFormComponentDefinitionListResponseBodyResult setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetFormComponentDefinitionListShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormComponentDefinitionListShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFormComponentDefinitionListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormComponentDefinitionListShrinkHeaders self = new GetFormComponentDefinitionListShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFormComponentDefinitionListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormComponentDefinitionListShrinkHeaders 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/GetFormDataByIDHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormDataByIDHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFormDataByIDHeadersAccountContext accountContext;
public static GetFormDataByIDHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDHeaders self = new GetFormDataByIDHeaders();
return TeaModel.build(map, self);
}
public GetFormDataByIDHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormDataByIDHeaders setAccountContext(GetFormDataByIDHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFormDataByIDHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFormDataByIDHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFormDataByIDHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDHeadersAccountContext self = new GetFormDataByIDHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFormDataByIDHeadersAccountContext 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/GetFormDataByIDRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormDataByIDRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBKT0MFBEBTDO8T7SLVP</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>FORM_INST_12345</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetFormDataByIDRequest build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDRequest self = new GetFormDataByIDRequest();
return TeaModel.build(map, self);
}
public GetFormDataByIDRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetFormDataByIDRequest setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetFormDataByIDRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetFormDataByIDRequest 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/GetFormDataByIDResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormDataByIDResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFormDataByIDResponseBody body;
public static GetFormDataByIDResponse build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDResponse self = new GetFormDataByIDResponse();
return TeaModel.build(map, self);
}
public GetFormDataByIDResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFormDataByIDResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFormDataByIDResponse setBody(GetFormDataByIDResponseBody body) {
this.body = body;
return this;
}
public GetFormDataByIDResponseBody 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/GetFormDataByIDResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormDataByIDResponseBody extends TeaModel {
@NameInMap("formData")
public java.util.Map<String, ?> formData;
/**
* <strong>example:</strong>
* <p>FORM_INST_12345</p>
*/
@NameInMap("formInstId")
public String formInstId;
/**
* <strong>example:</strong>
* <p>2021-05-01</p>
*/
@NameInMap("modifiedTimeGMT")
public String modifiedTimeGMT;
@NameInMap("originator")
public GetFormDataByIDResponseBodyOriginator originator;
/**
* <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 GetFormDataByIDResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDResponseBody self = new GetFormDataByIDResponseBody();
return TeaModel.build(map, self);
}
public GetFormDataByIDResponseBody setFormData(java.util.Map<String, ?> formData) {
this.formData = formData;
return this;
}
public java.util.Map<String, ?> getFormData() {
return this.formData;
}
public GetFormDataByIDResponseBody setFormInstId(String formInstId) {
this.formInstId = formInstId;
return this;
}
public String getFormInstId() {
return this.formInstId;
}
public GetFormDataByIDResponseBody setModifiedTimeGMT(String modifiedTimeGMT) {
this.modifiedTimeGMT = modifiedTimeGMT;
return this;
}
public String getModifiedTimeGMT() {
return this.modifiedTimeGMT;
}
public GetFormDataByIDResponseBody setOriginator(GetFormDataByIDResponseBodyOriginator originator) {
this.originator = originator;
return this;
}
public GetFormDataByIDResponseBodyOriginator getOriginator() {
return this.originator;
}
public GetFormDataByIDResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFormDataByIDResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFormDataByIDResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFormDataByIDResponseBodyOriginatorName extends TeaModel {
/**
* <strong>example:</strong>
* <p>张三</p>
*/
@NameInMap("NameInChinese")
public String nameInChinese;
/**
* <strong>example:</strong>
* <p>ZhangSan</p>
*/
@NameInMap("NameInEnglish")
public String nameInEnglish;
/**
* <strong>example:</strong>
* <p>i18n</p>
*/
@NameInMap("Type")
public String type;
public static GetFormDataByIDResponseBodyOriginatorName build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDResponseBodyOriginatorName self = new GetFormDataByIDResponseBodyOriginatorName();
return TeaModel.build(map, self);
}
public GetFormDataByIDResponseBodyOriginatorName setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public GetFormDataByIDResponseBodyOriginatorName setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public GetFormDataByIDResponseBodyOriginatorName setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class GetFormDataByIDResponseBodyOriginator extends TeaModel {
/**
* <strong>example:</strong>
* <p>开发部</p>
*/
@NameInMap("DepartmentName")
public String departmentName;
/**
* <strong>example:</strong>
* <p><a href="mailto:abc@alimail.com">abc@alimail.com</a></p>
*/
@NameInMap("Email")
public String email;
@NameInMap("Name")
public GetFormDataByIDResponseBodyOriginatorName name;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UserId")
public String userId;
public static GetFormDataByIDResponseBodyOriginator build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDResponseBodyOriginator self = new GetFormDataByIDResponseBodyOriginator();
return TeaModel.build(map, self);
}
public GetFormDataByIDResponseBodyOriginator setDepartmentName(String departmentName) {
this.departmentName = departmentName;
return this;
}
public String getDepartmentName() {
return this.departmentName;
}
public GetFormDataByIDResponseBodyOriginator setEmail(String email) {
this.email = email;
return this;
}
public String getEmail() {
return this.email;
}
public GetFormDataByIDResponseBodyOriginator setName(GetFormDataByIDResponseBodyOriginatorName name) {
this.name = name;
return this;
}
public GetFormDataByIDResponseBodyOriginatorName getName() {
return this.name;
}
public GetFormDataByIDResponseBodyOriginator setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetFormDataByIDShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormDataByIDShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFormDataByIDShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormDataByIDShrinkHeaders self = new GetFormDataByIDShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFormDataByIDShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormDataByIDShrinkHeaders 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/GetFormListInAppHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormListInAppHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetFormListInAppHeadersAccountContext accountContext;
public static GetFormListInAppHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppHeaders self = new GetFormListInAppHeaders();
return TeaModel.build(map, self);
}
public GetFormListInAppHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormListInAppHeaders setAccountContext(GetFormListInAppHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetFormListInAppHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetFormListInAppHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetFormListInAppHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppHeadersAccountContext self = new GetFormListInAppHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetFormListInAppHeadersAccountContext 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/GetFormListInAppRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormListInAppRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKT0xxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>receipt</p>
*/
@NameInMap("FormTypes")
public String formTypes;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetFormListInAppRequest build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppRequest self = new GetFormListInAppRequest();
return TeaModel.build(map, self);
}
public GetFormListInAppRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetFormListInAppRequest setFormTypes(String formTypes) {
this.formTypes = formTypes;
return this;
}
public String getFormTypes() {
return this.formTypes;
}
public GetFormListInAppRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public GetFormListInAppRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public GetFormListInAppRequest 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/GetFormListInAppResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormListInAppResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetFormListInAppResponseBody body;
public static GetFormListInAppResponse build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppResponse self = new GetFormListInAppResponse();
return TeaModel.build(map, self);
}
public GetFormListInAppResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetFormListInAppResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetFormListInAppResponse setBody(GetFormListInAppResponseBody body) {
this.body = body;
return this;
}
public GetFormListInAppResponseBody 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/GetFormListInAppResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormListInAppResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("currentPage")
public Integer currentPage;
@NameInMap("data")
public java.util.List<GetFormListInAppResponseBodyData> data;
/**
* <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>20</p>
*/
@NameInMap("totalCount")
public Integer totalCount;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetFormListInAppResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppResponseBody self = new GetFormListInAppResponseBody();
return TeaModel.build(map, self);
}
public GetFormListInAppResponseBody setCurrentPage(Integer currentPage) {
this.currentPage = currentPage;
return this;
}
public Integer getCurrentPage() {
return this.currentPage;
}
public GetFormListInAppResponseBody setData(java.util.List<GetFormListInAppResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<GetFormListInAppResponseBodyData> getData() {
return this.data;
}
public GetFormListInAppResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetFormListInAppResponseBody setSuccess(Boolean success) {
this.success = success;
return this;
}
public Boolean getSuccess() {
return this.success;
}
public GetFormListInAppResponseBody setTotalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Integer getTotalCount() {
return this.totalCount;
}
public GetFormListInAppResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetFormListInAppResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetFormListInAppResponseBodyDataTitle extends TeaModel {
/**
* <strong>example:</strong>
* <p>form</p>
*/
@NameInMap("EnUS")
public String enUS;
@NameInMap("ZhCN")
public String zhCN;
public static GetFormListInAppResponseBodyDataTitle build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppResponseBodyDataTitle self = new GetFormListInAppResponseBodyDataTitle();
return TeaModel.build(map, self);
}
public GetFormListInAppResponseBodyDataTitle setEnUS(String enUS) {
this.enUS = enUS;
return this;
}
public String getEnUS() {
return this.enUS;
}
public GetFormListInAppResponseBodyDataTitle setZhCN(String zhCN) {
this.zhCN = zhCN;
return this;
}
public String getZhCN() {
return this.zhCN;
}
}
public static class GetFormListInAppResponseBodyData extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("Creator")
public String creator;
/**
* <strong>example:</strong>
* <p>receipt</p>
*/
@NameInMap("FormType")
public String formType;
/**
* <strong>example:</strong>
* <p>FORM-BAxxxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>2023-02-22 15:27:07</p>
*/
@NameInMap("GmtCreate")
public String gmtCreate;
@NameInMap("Title")
public GetFormListInAppResponseBodyDataTitle title;
public static GetFormListInAppResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppResponseBodyData self = new GetFormListInAppResponseBodyData();
return TeaModel.build(map, self);
}
public GetFormListInAppResponseBodyData setCreator(String creator) {
this.creator = creator;
return this;
}
public String getCreator() {
return this.creator;
}
public GetFormListInAppResponseBodyData setFormType(String formType) {
this.formType = formType;
return this;
}
public String getFormType() {
return this.formType;
}
public GetFormListInAppResponseBodyData setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public GetFormListInAppResponseBodyData setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public GetFormListInAppResponseBodyData setTitle(GetFormListInAppResponseBodyDataTitle title) {
this.title = title;
return this;
}
public GetFormListInAppResponseBodyDataTitle 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/GetFormListInAppShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetFormListInAppShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetFormListInAppShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetFormListInAppShrinkHeaders self = new GetFormListInAppShrinkHeaders();
return TeaModel.build(map, self);
}
public GetFormListInAppShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetFormListInAppShrinkHeaders 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/GetGroupLiveListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetGroupLiveListHeadersAccountContext accountContext;
public static GetGroupLiveListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListHeaders self = new GetGroupLiveListHeaders();
return TeaModel.build(map, self);
}
public GetGroupLiveListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetGroupLiveListHeaders setAccountContext(GetGroupLiveListHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetGroupLiveListHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetGroupLiveListHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetGroupLiveListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListHeadersAccountContext self = new GetGroupLiveListHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetGroupLiveListHeadersAccountContext 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/GetGroupLiveListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1398324600000</p>
*/
@NameInMap("EndTime")
public Long endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidt*****Xa4K10w==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1398324600000</p>
*/
@NameInMap("StartTime")
public Long startTime;
@NameInMap("TenantContext")
public GetGroupLiveListRequestTenantContext tenantContext;
public static GetGroupLiveListRequest build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListRequest self = new GetGroupLiveListRequest();
return TeaModel.build(map, self);
}
public GetGroupLiveListRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetGroupLiveListRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetGroupLiveListRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetGroupLiveListRequest setTenantContext(GetGroupLiveListRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public GetGroupLiveListRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class GetGroupLiveListRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static GetGroupLiveListRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListRequestTenantContext self = new GetGroupLiveListRequestTenantContext();
return TeaModel.build(map, self);
}
public GetGroupLiveListRequestTenantContext 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/GetGroupLiveListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetGroupLiveListResponseBody body;
public static GetGroupLiveListResponse build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListResponse self = new GetGroupLiveListResponse();
return TeaModel.build(map, self);
}
public GetGroupLiveListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetGroupLiveListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetGroupLiveListResponse setBody(GetGroupLiveListResponseBody body) {
this.body = body;
return this;
}
public GetGroupLiveListResponseBody 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/GetGroupLiveListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public GetGroupLiveListResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static GetGroupLiveListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListResponseBody self = new GetGroupLiveListResponseBody();
return TeaModel.build(map, self);
}
public GetGroupLiveListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetGroupLiveListResponseBody setResult(GetGroupLiveListResponseBodyResult result) {
this.result = result;
return this;
}
public GetGroupLiveListResponseBodyResult getResult() {
return this.result;
}
public GetGroupLiveListResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetGroupLiveListResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class GetGroupLiveListResponseBodyResultGroupLiveList extends TeaModel {
/**
* <strong>example:</strong>
* <p>nickName</p>
*/
@NameInMap("AnchorNickname")
public String anchorNickname;
/**
* <strong>example:</strong>
* <p>Eijxx</p>
*/
@NameInMap("AnchorUnionId")
public String anchorUnionId;
/**
* <strong>example:</strong>
* <p>1398324600000</p>
*/
@NameInMap("LiveEndTime")
public Long liveEndTime;
/**
* <strong>example:</strong>
* <p>1398321600000</p>
*/
@NameInMap("LiveStartTime")
public Long liveStartTime;
/**
* <strong>example:</strong>
* <p>4d38xxxxx</p>
*/
@NameInMap("LiveUuid")
public String liveUuid;
/**
* <strong>example:</strong>
* <p>直播标题</p>
*/
@NameInMap("Title")
public String title;
public static GetGroupLiveListResponseBodyResultGroupLiveList build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListResponseBodyResultGroupLiveList self = new GetGroupLiveListResponseBodyResultGroupLiveList();
return TeaModel.build(map, self);
}
public GetGroupLiveListResponseBodyResultGroupLiveList setAnchorNickname(String anchorNickname) {
this.anchorNickname = anchorNickname;
return this;
}
public String getAnchorNickname() {
return this.anchorNickname;
}
public GetGroupLiveListResponseBodyResultGroupLiveList setAnchorUnionId(String anchorUnionId) {
this.anchorUnionId = anchorUnionId;
return this;
}
public String getAnchorUnionId() {
return this.anchorUnionId;
}
public GetGroupLiveListResponseBodyResultGroupLiveList setLiveEndTime(Long liveEndTime) {
this.liveEndTime = liveEndTime;
return this;
}
public Long getLiveEndTime() {
return this.liveEndTime;
}
public GetGroupLiveListResponseBodyResultGroupLiveList setLiveStartTime(Long liveStartTime) {
this.liveStartTime = liveStartTime;
return this;
}
public Long getLiveStartTime() {
return this.liveStartTime;
}
public GetGroupLiveListResponseBodyResultGroupLiveList setLiveUuid(String liveUuid) {
this.liveUuid = liveUuid;
return this;
}
public String getLiveUuid() {
return this.liveUuid;
}
public GetGroupLiveListResponseBodyResultGroupLiveList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
}
public static class GetGroupLiveListResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>直播列表</p>
*/
@NameInMap("GroupLiveList")
public java.util.List<GetGroupLiveListResponseBodyResultGroupLiveList> groupLiveList;
public static GetGroupLiveListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListResponseBodyResult self = new GetGroupLiveListResponseBodyResult();
return TeaModel.build(map, self);
}
public GetGroupLiveListResponseBodyResult setGroupLiveList(java.util.List<GetGroupLiveListResponseBodyResultGroupLiveList> groupLiveList) {
this.groupLiveList = groupLiveList;
return this;
}
public java.util.List<GetGroupLiveListResponseBodyResultGroupLiveList> getGroupLiveList() {
return this.groupLiveList;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetGroupLiveListShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetGroupLiveListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListShrinkHeaders self = new GetGroupLiveListShrinkHeaders();
return TeaModel.build(map, self);
}
public GetGroupLiveListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetGroupLiveListShrinkHeaders 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/GetGroupLiveListShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetGroupLiveListShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1398324600000</p>
*/
@NameInMap("EndTime")
public Long endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>cidt*****Xa4K10w==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1398324600000</p>
*/
@NameInMap("StartTime")
public Long startTime;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static GetGroupLiveListShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
GetGroupLiveListShrinkRequest self = new GetGroupLiveListShrinkRequest();
return TeaModel.build(map, self);
}
public GetGroupLiveListShrinkRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public GetGroupLiveListShrinkRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
public GetGroupLiveListShrinkRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public GetGroupLiveListShrinkRequest 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/GetInnerGroupMembersHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetInnerGroupMembersHeadersAccountContext accountContext;
public static GetInnerGroupMembersHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersHeaders self = new GetInnerGroupMembersHeaders();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInnerGroupMembersHeaders setAccountContext(GetInnerGroupMembersHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetInnerGroupMembersHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetInnerGroupMembersHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetInnerGroupMembersHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersHeadersAccountContext self = new GetInnerGroupMembersHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersHeadersAccountContext 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/GetInnerGroupMembersRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>UZr*****</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>cidB8Pzg****FIWPv2PMA==</p>
*/
@NameInMap("OpenConversationId")
public String openConversationId;
public static GetInnerGroupMembersRequest build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersRequest self = new GetInnerGroupMembersRequest();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public GetInnerGroupMembersRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetInnerGroupMembersRequest setOpenConversationId(String openConversationId) {
this.openConversationId = openConversationId;
return this;
}
public String getOpenConversationId() {
return this.openConversationId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/GetInnerGroupMembersResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetInnerGroupMembersResponseBody body;
public static GetInnerGroupMembersResponse build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersResponse self = new GetInnerGroupMembersResponse();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetInnerGroupMembersResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetInnerGroupMembersResponse setBody(GetInnerGroupMembersResponseBody body) {
this.body = body;
return this;
}
public GetInnerGroupMembersResponseBody 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/GetInnerGroupMembersResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* <strong>example:</strong>
* <p>cdf***</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>["012345"]</p>
*/
@NameInMap("userIds")
public java.util.List<String> userIds;
/**
* <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 GetInnerGroupMembersResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersResponseBody self = new GetInnerGroupMembersResponseBody();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public GetInnerGroupMembersResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public GetInnerGroupMembersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetInnerGroupMembersResponseBody setUserIds(java.util.List<String> userIds) {
this.userIds = userIds;
return this;
}
public java.util.List<String> getUserIds() {
return this.userIds;
}
public GetInnerGroupMembersResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public GetInnerGroupMembersResponseBody 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/GetInnerGroupMembersShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInnerGroupMembersShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static GetInnerGroupMembersShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInnerGroupMembersShrinkHeaders self = new GetInnerGroupMembersShrinkHeaders();
return TeaModel.build(map, self);
}
public GetInnerGroupMembersShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInnerGroupMembersShrinkHeaders 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/GetInstanceByIdHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceByIdHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public GetInstanceByIdHeadersAccountContext accountContext;
public static GetInstanceByIdHeaders build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdHeaders self = new GetInstanceByIdHeaders();
return TeaModel.build(map, self);
}
public GetInstanceByIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetInstanceByIdHeaders setAccountContext(GetInstanceByIdHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public GetInstanceByIdHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class GetInstanceByIdHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static GetInstanceByIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdHeadersAccountContext self = new GetInstanceByIdHeadersAccountContext();
return TeaModel.build(map, self);
}
public GetInstanceByIdHeadersAccountContext 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/GetInstanceByIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class GetInstanceByIdRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>APP_PBxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>f30233fb-72e1-xxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>zh_CN</p>
*/
@NameInMap("Language")
public String language;
/**
* <strong>example:</strong>
* <p>hexxxx</p>
*/
@NameInMap("SystemToken")
public String systemToken;
public static GetInstanceByIdRequest build(java.util.Map<String, ?> map) throws Exception {
GetInstanceByIdRequest self = new GetInstanceByIdRequest();
return TeaModel.build(map, self);
}
public GetInstanceByIdRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public GetInstanceByIdRequest setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetInstanceByIdRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public GetInstanceByIdRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.