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/InvokeSkillShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class InvokeSkillShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static InvokeSkillShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
InvokeSkillShrinkHeaders self = new InvokeSkillShrinkHeaders();
return TeaModel.build(map, self);
}
public InvokeSkillShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public InvokeSkillShrinkHeaders 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/InvokeSkillShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class InvokeSkillShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Params")
public String paramsShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a1d033dd-xxxx-49cf-b49b-2068081bb551</p>
*/
@NameInMap("SkillId")
public String skillId;
@NameInMap("Stream")
public Boolean stream;
public static InvokeSkillShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
InvokeSkillShrinkRequest self = new InvokeSkillShrinkRequest();
return TeaModel.build(map, self);
}
public InvokeSkillShrinkRequest setParamsShrink(String paramsShrink) {
this.paramsShrink = paramsShrink;
return this;
}
public String getParamsShrink() {
return this.paramsShrink;
}
public InvokeSkillShrinkRequest setSkillId(String skillId) {
this.skillId = skillId;
return this;
}
public String getSkillId() {
return this.skillId;
}
public InvokeSkillShrinkRequest setStream(Boolean stream) {
this.stream = stream;
return this;
}
public Boolean getStream() {
return this.stream;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListApplicationHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListApplicationHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListApplicationHeadersAccountContext accountContext;
public static ListApplicationHeaders build(java.util.Map<String, ?> map) throws Exception {
ListApplicationHeaders self = new ListApplicationHeaders();
return TeaModel.build(map, self);
}
public ListApplicationHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListApplicationHeaders setAccountContext(ListApplicationHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListApplicationHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListApplicationHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListApplicationHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListApplicationHeadersAccountContext self = new ListApplicationHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListApplicationHeadersAccountContext 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/ListApplicationRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListApplicationRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>createdByMe</p>
*/
@NameInMap("AppFilter")
public String appFilter;
/**
* <strong>example:</strong>
* <p>keyword</p>
*/
@NameInMap("AppNameSearchKeyword")
public String appNameSearchKeyword;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>corpid</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>keyword</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>keyword</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>keyword</p>
*/
@NameInMap("Token")
public String token;
public static ListApplicationRequest build(java.util.Map<String, ?> map) throws Exception {
ListApplicationRequest self = new ListApplicationRequest();
return TeaModel.build(map, self);
}
public ListApplicationRequest setAppFilter(String appFilter) {
this.appFilter = appFilter;
return this;
}
public String getAppFilter() {
return this.appFilter;
}
public ListApplicationRequest setAppNameSearchKeyword(String appNameSearchKeyword) {
this.appNameSearchKeyword = appNameSearchKeyword;
return this;
}
public String getAppNameSearchKeyword() {
return this.appNameSearchKeyword;
}
public ListApplicationRequest setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public ListApplicationRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListApplicationRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListApplicationRequest 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/ListApplicationResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListApplicationResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListApplicationResponseBody body;
public static ListApplicationResponse build(java.util.Map<String, ?> map) throws Exception {
ListApplicationResponse self = new ListApplicationResponse();
return TeaModel.build(map, self);
}
public ListApplicationResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListApplicationResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListApplicationResponse setBody(ListApplicationResponseBody body) {
this.body = body;
return this;
}
public ListApplicationResponseBody 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/ListApplicationResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListApplicationResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>[{}]</p>
*/
@NameInMap("data")
public java.util.List<ListApplicationResponseBodyData> 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 ListApplicationResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListApplicationResponseBody self = new ListApplicationResponseBody();
return TeaModel.build(map, self);
}
public ListApplicationResponseBody setData(java.util.List<ListApplicationResponseBodyData> data) {
this.data = data;
return this;
}
public java.util.List<ListApplicationResponseBodyData> getData() {
return this.data;
}
public ListApplicationResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListApplicationResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListApplicationResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public ListApplicationResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListApplicationResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListApplicationResponseBodyData extends TeaModel {
/**
* <strong>example:</strong>
* <p>{\"ODIN_TOPIC_ID\":\"256\"}</p>
*/
@NameInMap("AppConfig")
public String appConfig;
/**
* <strong>example:</strong>
* <p>APP_XCxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <strong>example:</strong>
* <p>ONLINE</p>
*/
@NameInMap("ApplicationStatus")
public String applicationStatus;
/**
* <strong>example:</strong>
* <p>ding5xxx</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("CreatorUserId")
public String creatorUserId;
/**
* <strong>example:</strong>
* <p>小明创建的宜搭应用</p>
*/
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>appdiqiu%%#0089FF</p>
*/
@NameInMap("Icon")
public String icon;
/**
* <strong>example:</strong>
* <p>y</p>
*/
@NameInMap("Inexistence")
public String inexistence;
/**
* <strong>example:</strong>
* <p>app</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>ding5xxx</p>
*/
@NameInMap("SubCorpId")
public String subCorpId;
public static ListApplicationResponseBodyData build(java.util.Map<String, ?> map) throws Exception {
ListApplicationResponseBodyData self = new ListApplicationResponseBodyData();
return TeaModel.build(map, self);
}
public ListApplicationResponseBodyData setAppConfig(String appConfig) {
this.appConfig = appConfig;
return this;
}
public String getAppConfig() {
return this.appConfig;
}
public ListApplicationResponseBodyData setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListApplicationResponseBodyData setApplicationStatus(String applicationStatus) {
this.applicationStatus = applicationStatus;
return this;
}
public String getApplicationStatus() {
return this.applicationStatus;
}
public ListApplicationResponseBodyData setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public ListApplicationResponseBodyData setCreatorUserId(String creatorUserId) {
this.creatorUserId = creatorUserId;
return this;
}
public String getCreatorUserId() {
return this.creatorUserId;
}
public ListApplicationResponseBodyData setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListApplicationResponseBodyData setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListApplicationResponseBodyData setInexistence(String inexistence) {
this.inexistence = inexistence;
return this;
}
public String getInexistence() {
return this.inexistence;
}
public ListApplicationResponseBodyData setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListApplicationResponseBodyData setSubCorpId(String subCorpId) {
this.subCorpId = subCorpId;
return this;
}
public String getSubCorpId() {
return this.subCorpId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListApplicationShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListApplicationShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListApplicationShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListApplicationShrinkHeaders self = new ListApplicationShrinkHeaders();
return TeaModel.build(map, self);
}
public ListApplicationShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListApplicationShrinkHeaders 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/ListCalendarsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListCalendarsHeadersAccountContext accountContext;
public static ListCalendarsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsHeaders self = new ListCalendarsHeaders();
return TeaModel.build(map, self);
}
public ListCalendarsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCalendarsHeaders setAccountContext(ListCalendarsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListCalendarsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListCalendarsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListCalendarsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsHeadersAccountContext self = new ListCalendarsHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListCalendarsHeadersAccountContext 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/ListCalendarsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Request")
public java.util.Map<String, ?> request;
public static ListCalendarsRequest build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsRequest self = new ListCalendarsRequest();
return TeaModel.build(map, self);
}
public ListCalendarsRequest setRequest(java.util.Map<String, ?> request) {
this.request = request;
return this;
}
public java.util.Map<String, ?> getRequest() {
return this.request;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListCalendarsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCalendarsResponseBody body;
public static ListCalendarsResponse build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsResponse self = new ListCalendarsResponse();
return TeaModel.build(map, self);
}
public ListCalendarsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCalendarsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCalendarsResponse setBody(ListCalendarsResponseBody body) {
this.body = body;
return this;
}
public ListCalendarsResponseBody 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/ListCalendarsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsResponseBody extends TeaModel {
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("response")
public ListCalendarsResponseBodyResponse response;
public static ListCalendarsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsResponseBody self = new ListCalendarsResponseBody();
return TeaModel.build(map, self);
}
public ListCalendarsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCalendarsResponseBody setResponse(ListCalendarsResponseBodyResponse response) {
this.response = response;
return this;
}
public ListCalendarsResponseBodyResponse getResponse() {
return this.response;
}
public static class ListCalendarsResponseBodyResponseCalendars extends TeaModel {
/**
* <strong>example:</strong>
* <p>描述</p>
*/
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ETag")
public String ETag;
/**
* <strong>example:</strong>
* <p>cnNTbWxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>VIEW_DETAIL</p>
*/
@NameInMap("Privilege")
public String privilege;
/**
* <strong>example:</strong>
* <p>标题</p>
*/
@NameInMap("Summary")
public String summary;
/**
* <strong>example:</strong>
* <p>Asia/Shanghai</p>
*/
@NameInMap("TimeZone")
public String timeZone;
/**
* <strong>example:</strong>
* <p>primary</p>
*/
@NameInMap("Type")
public String type;
public static ListCalendarsResponseBodyResponseCalendars build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsResponseBodyResponseCalendars self = new ListCalendarsResponseBodyResponseCalendars();
return TeaModel.build(map, self);
}
public ListCalendarsResponseBodyResponseCalendars setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListCalendarsResponseBodyResponseCalendars setETag(String ETag) {
this.ETag = ETag;
return this;
}
public String getETag() {
return this.ETag;
}
public ListCalendarsResponseBodyResponseCalendars setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListCalendarsResponseBodyResponseCalendars setPrivilege(String privilege) {
this.privilege = privilege;
return this;
}
public String getPrivilege() {
return this.privilege;
}
public ListCalendarsResponseBodyResponseCalendars setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public ListCalendarsResponseBodyResponseCalendars setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
public ListCalendarsResponseBodyResponseCalendars setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListCalendarsResponseBodyResponse extends TeaModel {
@NameInMap("Calendars")
public java.util.List<ListCalendarsResponseBodyResponseCalendars> calendars;
public static ListCalendarsResponseBodyResponse build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsResponseBodyResponse self = new ListCalendarsResponseBodyResponse();
return TeaModel.build(map, self);
}
public ListCalendarsResponseBodyResponse setCalendars(java.util.List<ListCalendarsResponseBodyResponseCalendars> calendars) {
this.calendars = calendars;
return this;
}
public java.util.List<ListCalendarsResponseBodyResponseCalendars> getCalendars() {
return this.calendars;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListCalendarsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListCalendarsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsShrinkHeaders self = new ListCalendarsShrinkHeaders();
return TeaModel.build(map, self);
}
public ListCalendarsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCalendarsShrinkHeaders 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/ListCalendarsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListCalendarsShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Request")
public String requestShrink;
public static ListCalendarsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListCalendarsShrinkRequest self = new ListCalendarsShrinkRequest();
return TeaModel.build(map, self);
}
public ListCalendarsShrinkRequest setRequestShrink(String requestShrink) {
this.requestShrink = requestShrink;
return this;
}
public String getRequestShrink() {
return this.requestShrink;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListDentriesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListDentriesHeadersAccountContext accountContext;
public static ListDentriesHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDentriesHeaders self = new ListDentriesHeaders();
return TeaModel.build(map, self);
}
public ListDentriesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDentriesHeaders setAccountContext(ListDentriesHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListDentriesHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListDentriesHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListDentriesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListDentriesHeadersAccountContext self = new ListDentriesHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListDentriesHeadersAccountContext 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/ListDentriesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>50</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>next_token</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>ASC</p>
*/
@NameInMap("Order")
public String order;
/**
* <strong>example:</strong>
* <p>MODIFIED_TIME</p>
*/
@NameInMap("OrderBy")
public String orderBy;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ParentId")
public String parentId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>854xxxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public ListDentriesRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithThumbnail")
public Boolean withThumbnail;
public static ListDentriesRequest build(java.util.Map<String, ?> map) throws Exception {
ListDentriesRequest self = new ListDentriesRequest();
return TeaModel.build(map, self);
}
public ListDentriesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListDentriesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDentriesRequest setOrder(String order) {
this.order = order;
return this;
}
public String getOrder() {
return this.order;
}
public ListDentriesRequest setOrderBy(String orderBy) {
this.orderBy = orderBy;
return this;
}
public String getOrderBy() {
return this.orderBy;
}
public ListDentriesRequest setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
public ListDentriesRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public ListDentriesRequest setTenantContext(ListDentriesRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListDentriesRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public ListDentriesRequest setWithThumbnail(Boolean withThumbnail) {
this.withThumbnail = withThumbnail;
return this;
}
public Boolean getWithThumbnail() {
return this.withThumbnail;
}
public static class ListDentriesRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListDentriesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListDentriesRequestTenantContext self = new ListDentriesRequestTenantContext();
return TeaModel.build(map, self);
}
public ListDentriesRequestTenantContext 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/ListDentriesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDentriesResponseBody body;
public static ListDentriesResponse build(java.util.Map<String, ?> map) throws Exception {
ListDentriesResponse self = new ListDentriesResponse();
return TeaModel.build(map, self);
}
public ListDentriesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDentriesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDentriesResponse setBody(ListDentriesResponseBody body) {
this.body = body;
return this;
}
public ListDentriesResponseBody 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/ListDentriesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesResponseBody extends TeaModel {
@NameInMap("dentries")
public java.util.List<ListDentriesResponseBodyDentries> dentries;
/**
* <strong>example:</strong>
* <p>next_token</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>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("vendorRequestId")
public String vendorRequestId;
/**
* <strong>example:</strong>
* <p>dingtalk</p>
*/
@NameInMap("vendorType")
public String vendorType;
public static ListDentriesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDentriesResponseBody self = new ListDentriesResponseBody();
return TeaModel.build(map, self);
}
public ListDentriesResponseBody setDentries(java.util.List<ListDentriesResponseBodyDentries> dentries) {
this.dentries = dentries;
return this;
}
public java.util.List<ListDentriesResponseBodyDentries> getDentries() {
return this.dentries;
}
public ListDentriesResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDentriesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDentriesResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListDentriesResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListDentriesResponseBodyDentriesProperties extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("ReadOnly")
public Boolean readOnly;
public static ListDentriesResponseBodyDentriesProperties build(java.util.Map<String, ?> map) throws Exception {
ListDentriesResponseBodyDentriesProperties self = new ListDentriesResponseBodyDentriesProperties();
return TeaModel.build(map, self);
}
public ListDentriesResponseBodyDentriesProperties setReadOnly(Boolean readOnly) {
this.readOnly = readOnly;
return this;
}
public Boolean getReadOnly() {
return this.readOnly;
}
}
public static class ListDentriesResponseBodyDentriesThumbnail extends TeaModel {
/**
* <strong>example:</strong>
* <p>64</p>
*/
@NameInMap("Height")
public Integer height;
/**
* <strong>example:</strong>
* <p>url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>64</p>
*/
@NameInMap("Width")
public Integer width;
public static ListDentriesResponseBodyDentriesThumbnail build(java.util.Map<String, ?> map) throws Exception {
ListDentriesResponseBodyDentriesThumbnail self = new ListDentriesResponseBodyDentriesThumbnail();
return TeaModel.build(map, self);
}
public ListDentriesResponseBodyDentriesThumbnail setHeight(Integer height) {
this.height = height;
return this;
}
public Integer getHeight() {
return this.height;
}
public ListDentriesResponseBodyDentriesThumbnail setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public ListDentriesResponseBodyDentriesThumbnail setWidth(Integer width) {
this.width = width;
return this;
}
public Integer getWidth() {
return this.width;
}
}
public static class ListDentriesResponseBodyDentries extends TeaModel {
@NameInMap("AppProperties")
public java.util.Map<String, java.util.List<DentriesAppPropertiesValue>> appProperties;
/**
* <strong>example:</strong>
* <p>2022-01-01T10:00:00Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>cHtUxxxxx</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>txt</p>
*/
@NameInMap("Extension")
public String extension;
/**
* <strong>example:</strong>
* <p>657xxxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>2022-01-01T10:00:00Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>cHtUxxxxx</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>测试文件夹</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ParentId")
public String parentId;
/**
* <strong>example:</strong>
* <p>PUBLIC_OSS_PARTITION</p>
*/
@NameInMap("PartitionType")
public String partitionType;
/**
* <strong>example:</strong>
* <p>./test.txt</p>
*/
@NameInMap("Path")
public String path;
@NameInMap("Properties")
public ListDentriesResponseBodyDentriesProperties properties;
/**
* <strong>example:</strong>
* <p>512</p>
*/
@NameInMap("Size")
public Long size;
/**
* <strong>example:</strong>
* <p>854xxxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
/**
* <strong>example:</strong>
* <p>NORMAL</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>DINGTALK</p>
*/
@NameInMap("StorageDriver")
public String storageDriver;
@NameInMap("Thumbnail")
public ListDentriesResponseBodyDentriesThumbnail thumbnail;
/**
* <strong>example:</strong>
* <p>FILE</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>123xxxxx</p>
*/
@NameInMap("Uuid")
public String uuid;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Version")
public Long version;
public static ListDentriesResponseBodyDentries build(java.util.Map<String, ?> map) throws Exception {
ListDentriesResponseBodyDentries self = new ListDentriesResponseBodyDentries();
return TeaModel.build(map, self);
}
public ListDentriesResponseBodyDentries setAppProperties(java.util.Map<String, java.util.List<DentriesAppPropertiesValue>> appProperties) {
this.appProperties = appProperties;
return this;
}
public java.util.Map<String, java.util.List<DentriesAppPropertiesValue>> getAppProperties() {
return this.appProperties;
}
public ListDentriesResponseBodyDentries setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListDentriesResponseBodyDentries setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public ListDentriesResponseBodyDentries setExtension(String extension) {
this.extension = extension;
return this;
}
public String getExtension() {
return this.extension;
}
public ListDentriesResponseBodyDentries setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListDentriesResponseBodyDentries setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public ListDentriesResponseBodyDentries setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public ListDentriesResponseBodyDentries setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListDentriesResponseBodyDentries setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
public ListDentriesResponseBodyDentries setPartitionType(String partitionType) {
this.partitionType = partitionType;
return this;
}
public String getPartitionType() {
return this.partitionType;
}
public ListDentriesResponseBodyDentries setPath(String path) {
this.path = path;
return this;
}
public String getPath() {
return this.path;
}
public ListDentriesResponseBodyDentries setProperties(ListDentriesResponseBodyDentriesProperties properties) {
this.properties = properties;
return this;
}
public ListDentriesResponseBodyDentriesProperties getProperties() {
return this.properties;
}
public ListDentriesResponseBodyDentries setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public ListDentriesResponseBodyDentries setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public ListDentriesResponseBodyDentries setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListDentriesResponseBodyDentries setStorageDriver(String storageDriver) {
this.storageDriver = storageDriver;
return this;
}
public String getStorageDriver() {
return this.storageDriver;
}
public ListDentriesResponseBodyDentries setThumbnail(ListDentriesResponseBodyDentriesThumbnail thumbnail) {
this.thumbnail = thumbnail;
return this;
}
public ListDentriesResponseBodyDentriesThumbnail getThumbnail() {
return this.thumbnail;
}
public ListDentriesResponseBodyDentries setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListDentriesResponseBodyDentries setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
public ListDentriesResponseBodyDentries setVersion(Long version) {
this.version = version;
return this;
}
public Long getVersion() {
return this.version;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListDentriesShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListDentriesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDentriesShrinkHeaders self = new ListDentriesShrinkHeaders();
return TeaModel.build(map, self);
}
public ListDentriesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDentriesShrinkHeaders 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/ListDentriesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDentriesShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>50</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>next_token</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>ASC</p>
*/
@NameInMap("Order")
public String order;
/**
* <strong>example:</strong>
* <p>MODIFIED_TIME</p>
*/
@NameInMap("OrderBy")
public String orderBy;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("ParentId")
public String parentId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>854xxxxx</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("WithThumbnail")
public Boolean withThumbnail;
public static ListDentriesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDentriesShrinkRequest self = new ListDentriesShrinkRequest();
return TeaModel.build(map, self);
}
public ListDentriesShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListDentriesShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDentriesShrinkRequest setOrder(String order) {
this.order = order;
return this;
}
public String getOrder() {
return this.order;
}
public ListDentriesShrinkRequest setOrderBy(String orderBy) {
this.orderBy = orderBy;
return this;
}
public String getOrderBy() {
return this.orderBy;
}
public ListDentriesShrinkRequest setParentId(String parentId) {
this.parentId = parentId;
return this;
}
public String getParentId() {
return this.parentId;
}
public ListDentriesShrinkRequest setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public ListDentriesShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public ListDentriesShrinkRequest setWithThumbnail(Boolean withThumbnail) {
this.withThumbnail = withThumbnail;
return this;
}
public Boolean getWithThumbnail() {
return this.withThumbnail;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListDriveSpacesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AccountContext")
public ListDriveSpacesHeadersAccountContext accountContext;
public static ListDriveSpacesHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesHeaders self = new ListDriveSpacesHeaders();
return TeaModel.build(map, self);
}
public ListDriveSpacesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDriveSpacesHeaders setAccountContext(ListDriveSpacesHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListDriveSpacesHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListDriveSpacesHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListDriveSpacesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesHeadersAccountContext self = new ListDriveSpacesHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListDriveSpacesHeadersAccountContext 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/ListDriveSpacesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>fekaf</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>org</p>
*/
@NameInMap("SpaceType")
public String spaceType;
@NameInMap("TenantContext")
public ListDriveSpacesRequestTenantContext tenantContext;
public static ListDriveSpacesRequest build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesRequest self = new ListDriveSpacesRequest();
return TeaModel.build(map, self);
}
public ListDriveSpacesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListDriveSpacesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDriveSpacesRequest setSpaceType(String spaceType) {
this.spaceType = spaceType;
return this;
}
public String getSpaceType() {
return this.spaceType;
}
public ListDriveSpacesRequest setTenantContext(ListDriveSpacesRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListDriveSpacesRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListDriveSpacesRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListDriveSpacesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesRequestTenantContext self = new ListDriveSpacesRequestTenantContext();
return TeaModel.build(map, self);
}
public ListDriveSpacesRequestTenantContext 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/ListDriveSpacesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDriveSpacesResponseBody body;
public static ListDriveSpacesResponse build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesResponse self = new ListDriveSpacesResponse();
return TeaModel.build(map, self);
}
public ListDriveSpacesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDriveSpacesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDriveSpacesResponse setBody(ListDriveSpacesResponseBody body) {
this.body = body;
return this;
}
public ListDriveSpacesResponseBody 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/ListDriveSpacesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>fekaf</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("spaces")
public java.util.List<ListDriveSpacesResponseBodySpaces> spaces;
/**
* <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 ListDriveSpacesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesResponseBody self = new ListDriveSpacesResponseBody();
return TeaModel.build(map, self);
}
public ListDriveSpacesResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDriveSpacesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDriveSpacesResponseBody setSpaces(java.util.List<ListDriveSpacesResponseBodySpaces> spaces) {
this.spaces = spaces;
return this;
}
public java.util.List<ListDriveSpacesResponseBodySpaces> getSpaces() {
return this.spaces;
}
public ListDriveSpacesResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListDriveSpacesResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListDriveSpacesResponseBodySpaces extends TeaModel {
/**
* <strong>example:</strong>
* <p>2016-02-28T10:47:08Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>2016-02-28T10:47:08Z</p>
*/
@NameInMap("ModifyTime")
public String modifyTime;
/**
* <strong>example:</strong>
* <p>acl</p>
*/
@NameInMap("PermissionMode")
public String permissionMode;
/**
* <strong>example:</strong>
* <p>2147483648</p>
*/
@NameInMap("Quota")
public Long quota;
/**
* <strong>example:</strong>
* <p>123456789</p>
*/
@NameInMap("SpaceId")
public String spaceId;
@NameInMap("SpaceName")
public String spaceName;
/**
* <strong>example:</strong>
* <p>org</p>
*/
@NameInMap("SpaceType")
public String spaceType;
/**
* <strong>example:</strong>
* <p>640445953</p>
*/
@NameInMap("UsedQuota")
public Long usedQuota;
public static ListDriveSpacesResponseBodySpaces build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesResponseBodySpaces self = new ListDriveSpacesResponseBodySpaces();
return TeaModel.build(map, self);
}
public ListDriveSpacesResponseBodySpaces setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListDriveSpacesResponseBodySpaces setModifyTime(String modifyTime) {
this.modifyTime = modifyTime;
return this;
}
public String getModifyTime() {
return this.modifyTime;
}
public ListDriveSpacesResponseBodySpaces setPermissionMode(String permissionMode) {
this.permissionMode = permissionMode;
return this;
}
public String getPermissionMode() {
return this.permissionMode;
}
public ListDriveSpacesResponseBodySpaces setQuota(Long quota) {
this.quota = quota;
return this;
}
public Long getQuota() {
return this.quota;
}
public ListDriveSpacesResponseBodySpaces setSpaceId(String spaceId) {
this.spaceId = spaceId;
return this;
}
public String getSpaceId() {
return this.spaceId;
}
public ListDriveSpacesResponseBodySpaces setSpaceName(String spaceName) {
this.spaceName = spaceName;
return this;
}
public String getSpaceName() {
return this.spaceName;
}
public ListDriveSpacesResponseBodySpaces setSpaceType(String spaceType) {
this.spaceType = spaceType;
return this;
}
public String getSpaceType() {
return this.spaceType;
}
public ListDriveSpacesResponseBodySpaces setUsedQuota(Long usedQuota) {
this.usedQuota = usedQuota;
return this;
}
public Long getUsedQuota() {
return this.usedQuota;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListDriveSpacesShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListDriveSpacesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesShrinkHeaders self = new ListDriveSpacesShrinkHeaders();
return TeaModel.build(map, self);
}
public ListDriveSpacesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDriveSpacesShrinkHeaders 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/ListDriveSpacesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListDriveSpacesShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>fekaf</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>org</p>
*/
@NameInMap("SpaceType")
public String spaceType;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ListDriveSpacesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListDriveSpacesShrinkRequest self = new ListDriveSpacesShrinkRequest();
return TeaModel.build(map, self);
}
public ListDriveSpacesShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListDriveSpacesShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListDriveSpacesShrinkRequest setSpaceType(String spaceType) {
this.spaceType = spaceType;
return this;
}
public String getSpaceType() {
return this.spaceType;
}
public ListDriveSpacesShrinkRequest 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/ListEventsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListEventsHeadersAccountContext accountContext;
public static ListEventsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListEventsHeaders self = new ListEventsHeaders();
return TeaModel.build(map, self);
}
public ListEventsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListEventsHeaders setAccountContext(ListEventsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListEventsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListEventsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>208579</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListEventsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListEventsHeadersAccountContext self = new ListEventsHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListEventsHeadersAccountContext 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/ListEventsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>primary</p>
*/
@NameInMap("CalendarId")
public String calendarId;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxAttendees")
public Integer maxAttendees;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>cnNTbW1YbxxxxdlQrQT09</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>cnNTbWxxxxaFJZdEgvdlQrQT09</p>
*/
@NameInMap("SeriesMasterId")
public String seriesMasterId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("ShowDeleted")
public Boolean showDeleted;
/**
* <strong>example:</strong>
* <p>zxcasdfvc000009</p>
*/
@NameInMap("SyncToken")
public String syncToken;
/**
* <strong>example:</strong>
* <p>2023-06-21T00:00:00+08:00</p>
*/
@NameInMap("TimeMax")
public String timeMax;
/**
* <strong>example:</strong>
* <p>2023-06-20T00:00:00+08:00</p>
*/
@NameInMap("TimeMin")
public String timeMin;
public static ListEventsRequest build(java.util.Map<String, ?> map) throws Exception {
ListEventsRequest self = new ListEventsRequest();
return TeaModel.build(map, self);
}
public ListEventsRequest setCalendarId(String calendarId) {
this.calendarId = calendarId;
return this;
}
public String getCalendarId() {
return this.calendarId;
}
public ListEventsRequest setMaxAttendees(Integer maxAttendees) {
this.maxAttendees = maxAttendees;
return this;
}
public Integer getMaxAttendees() {
return this.maxAttendees;
}
public ListEventsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListEventsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListEventsRequest setSeriesMasterId(String seriesMasterId) {
this.seriesMasterId = seriesMasterId;
return this;
}
public String getSeriesMasterId() {
return this.seriesMasterId;
}
public ListEventsRequest setShowDeleted(Boolean showDeleted) {
this.showDeleted = showDeleted;
return this;
}
public Boolean getShowDeleted() {
return this.showDeleted;
}
public ListEventsRequest setSyncToken(String syncToken) {
this.syncToken = syncToken;
return this;
}
public String getSyncToken() {
return this.syncToken;
}
public ListEventsRequest setTimeMax(String timeMax) {
this.timeMax = timeMax;
return this;
}
public String getTimeMax() {
return this.timeMax;
}
public ListEventsRequest setTimeMin(String timeMin) {
this.timeMin = timeMin;
return this;
}
public String getTimeMin() {
return this.timeMin;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListEventsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListEventsResponseBody body;
public static ListEventsResponse build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponse self = new ListEventsResponse();
return TeaModel.build(map, self);
}
public ListEventsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListEventsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListEventsResponse setBody(ListEventsResponseBody body) {
this.body = body;
return this;
}
public ListEventsResponseBody 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/ListEventsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsResponseBody extends TeaModel {
@NameInMap("events")
public java.util.List<ListEventsResponseBodyEvents> events;
/**
* <strong>example:</strong>
* <p>cnNTbW1YbxxxxdlQrQT09</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>4248DCC9-785F-5A14-8BE0-830FD52E1261</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>zxcasdfvc000009</p>
*/
@NameInMap("syncToken")
public String syncToken;
@NameInMap("vendorRequestId")
public String vendorRequestId;
@NameInMap("vendorType")
public String vendorType;
public static ListEventsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBody self = new ListEventsResponseBody();
return TeaModel.build(map, self);
}
public ListEventsResponseBody setEvents(java.util.List<ListEventsResponseBodyEvents> events) {
this.events = events;
return this;
}
public java.util.List<ListEventsResponseBodyEvents> getEvents() {
return this.events;
}
public ListEventsResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListEventsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListEventsResponseBody setSyncToken(String syncToken) {
this.syncToken = syncToken;
return this;
}
public String getSyncToken() {
return this.syncToken;
}
public ListEventsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListEventsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListEventsResponseBodyEventsAttendees extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <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 ListEventsResponseBodyEventsAttendees build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsAttendees self = new ListEventsResponseBodyEventsAttendees();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsAttendees setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsResponseBodyEventsAttendees setIsOptional(Boolean isOptional) {
this.isOptional = isOptional;
return this;
}
public Boolean getIsOptional() {
return this.isOptional;
}
public ListEventsResponseBodyEventsAttendees setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsResponseBodyEventsAttendees setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class ListEventsResponseBodyEventsCategories extends TeaModel {
@NameInMap("DisplayName")
public String displayName;
public static ListEventsResponseBodyEventsCategories build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsCategories self = new ListEventsResponseBodyEventsCategories();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsCategories setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
}
public static class ListEventsResponseBodyEventsEnd 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 ListEventsResponseBodyEventsEnd build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsEnd self = new ListEventsResponseBodyEventsEnd();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsEnd setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public ListEventsResponseBodyEventsEnd setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public ListEventsResponseBodyEventsEnd setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class ListEventsResponseBodyEventsExtendedPropertiesSharedProperties extends TeaModel {
/**
* <strong>example:</strong>
* <p>ding*********31</p>
*/
@NameInMap("BelongCorpId")
public String belongCorpId;
/**
* <strong>example:</strong>
* <p>zxcv90asdf123===</p>
*/
@NameInMap("SourceOpenCid")
public String sourceOpenCid;
public static ListEventsResponseBodyEventsExtendedPropertiesSharedProperties build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsExtendedPropertiesSharedProperties self = new ListEventsResponseBodyEventsExtendedPropertiesSharedProperties();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsExtendedPropertiesSharedProperties setBelongCorpId(String belongCorpId) {
this.belongCorpId = belongCorpId;
return this;
}
public String getBelongCorpId() {
return this.belongCorpId;
}
public ListEventsResponseBodyEventsExtendedPropertiesSharedProperties setSourceOpenCid(String sourceOpenCid) {
this.sourceOpenCid = sourceOpenCid;
return this;
}
public String getSourceOpenCid() {
return this.sourceOpenCid;
}
}
public static class ListEventsResponseBodyEventsExtendedProperties extends TeaModel {
@NameInMap("SharedProperties")
public ListEventsResponseBodyEventsExtendedPropertiesSharedProperties sharedProperties;
public static ListEventsResponseBodyEventsExtendedProperties build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsExtendedProperties self = new ListEventsResponseBodyEventsExtendedProperties();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsExtendedProperties setSharedProperties(ListEventsResponseBodyEventsExtendedPropertiesSharedProperties sharedProperties) {
this.sharedProperties = sharedProperties;
return this;
}
public ListEventsResponseBodyEventsExtendedPropertiesSharedProperties getSharedProperties() {
return this.sharedProperties;
}
}
public static class ListEventsResponseBodyEventsLocation extends TeaModel {
/**
* <strong>example:</strong>
* <p>room 1-2-3</p>
*/
@NameInMap("DisplayName")
public String displayName;
@NameInMap("MeetingRooms")
public java.util.List<String> meetingRooms;
public static ListEventsResponseBodyEventsLocation build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsLocation self = new ListEventsResponseBodyEventsLocation();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsLocation setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsResponseBodyEventsLocation setMeetingRooms(java.util.List<String> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<String> getMeetingRooms() {
return this.meetingRooms;
}
}
public static class ListEventsResponseBodyEventsMeetingRooms extends TeaModel {
@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 ListEventsResponseBodyEventsMeetingRooms build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsMeetingRooms self = new ListEventsResponseBodyEventsMeetingRooms();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsMeetingRooms setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsResponseBodyEventsMeetingRooms setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsResponseBodyEventsMeetingRooms setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
}
public static class ListEventsResponseBodyEventsOnlineMeetingInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>5c4df21dxxxx-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/videoCoxxxxndar?confId=5c4df21dxxxx2b9f3a&calendarId=92xxxx36</p>
*/
@NameInMap("Url")
public String url;
public static ListEventsResponseBodyEventsOnlineMeetingInfo build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsOnlineMeetingInfo self = new ListEventsResponseBodyEventsOnlineMeetingInfo();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsOnlineMeetingInfo setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public ListEventsResponseBodyEventsOnlineMeetingInfo setExtraInfo(java.util.Map<String, ?> extraInfo) {
this.extraInfo = extraInfo;
return this;
}
public java.util.Map<String, ?> getExtraInfo() {
return this.extraInfo;
}
public ListEventsResponseBodyEventsOnlineMeetingInfo setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListEventsResponseBodyEventsOnlineMeetingInfo setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class ListEventsResponseBodyEventsOrganizer extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Self")
public Boolean self;
public static ListEventsResponseBodyEventsOrganizer build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsOrganizer self = new ListEventsResponseBodyEventsOrganizer();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsOrganizer setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsResponseBodyEventsOrganizer setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsResponseBodyEventsOrganizer setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class ListEventsResponseBodyEventsOriginStart extends TeaModel {
/**
* <strong>example:</strong>
* <p>2023-01-01T00:00:00Z</p>
*/
@NameInMap("DateTime")
public String dateTime;
public static ListEventsResponseBodyEventsOriginStart build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsOriginStart self = new ListEventsResponseBodyEventsOriginStart();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsOriginStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
}
public static class ListEventsResponseBodyEventsRecurrencePattern extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("DayOfMonth")
public Integer dayOfMonth;
/**
* <strong>example:</strong>
* <p>sunday</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 ListEventsResponseBodyEventsRecurrencePattern build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsRecurrencePattern self = new ListEventsResponseBodyEventsRecurrencePattern();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsRecurrencePattern setDayOfMonth(Integer dayOfMonth) {
this.dayOfMonth = dayOfMonth;
return this;
}
public Integer getDayOfMonth() {
return this.dayOfMonth;
}
public ListEventsResponseBodyEventsRecurrencePattern setDaysOfWeek(String daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public String getDaysOfWeek() {
return this.daysOfWeek;
}
public ListEventsResponseBodyEventsRecurrencePattern setIndex(String index) {
this.index = index;
return this;
}
public String getIndex() {
return this.index;
}
public ListEventsResponseBodyEventsRecurrencePattern setInterval(Integer interval) {
this.interval = interval;
return this;
}
public Integer getInterval() {
return this.interval;
}
public ListEventsResponseBodyEventsRecurrencePattern setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListEventsResponseBodyEventsRecurrenceRange 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 ListEventsResponseBodyEventsRecurrenceRange build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsRecurrenceRange self = new ListEventsResponseBodyEventsRecurrenceRange();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsRecurrenceRange setEndDate(String endDate) {
this.endDate = endDate;
return this;
}
public String getEndDate() {
return this.endDate;
}
public ListEventsResponseBodyEventsRecurrenceRange setNumberOfOccurrences(Integer numberOfOccurrences) {
this.numberOfOccurrences = numberOfOccurrences;
return this;
}
public Integer getNumberOfOccurrences() {
return this.numberOfOccurrences;
}
public ListEventsResponseBodyEventsRecurrenceRange setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListEventsResponseBodyEventsRecurrence extends TeaModel {
@NameInMap("Pattern")
public ListEventsResponseBodyEventsRecurrencePattern pattern;
@NameInMap("Range")
public ListEventsResponseBodyEventsRecurrenceRange range;
public static ListEventsResponseBodyEventsRecurrence build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsRecurrence self = new ListEventsResponseBodyEventsRecurrence();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsRecurrence setPattern(ListEventsResponseBodyEventsRecurrencePattern pattern) {
this.pattern = pattern;
return this;
}
public ListEventsResponseBodyEventsRecurrencePattern getPattern() {
return this.pattern;
}
public ListEventsResponseBodyEventsRecurrence setRange(ListEventsResponseBodyEventsRecurrenceRange range) {
this.range = range;
return this;
}
public ListEventsResponseBodyEventsRecurrenceRange getRange() {
return this.range;
}
}
public static class ListEventsResponseBodyEventsReminders 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 ListEventsResponseBodyEventsReminders build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsReminders self = new ListEventsResponseBodyEventsReminders();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsReminders setMethod(String method) {
this.method = method;
return this;
}
public String getMethod() {
return this.method;
}
public ListEventsResponseBodyEventsReminders setMinutes(String minutes) {
this.minutes = minutes;
return this;
}
public String getMinutes() {
return this.minutes;
}
}
public static class ListEventsResponseBodyEventsRichTextDescription extends TeaModel {
@NameInMap("Text")
public String text;
public static ListEventsResponseBodyEventsRichTextDescription build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsRichTextDescription self = new ListEventsResponseBodyEventsRichTextDescription();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsRichTextDescription setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
public static class ListEventsResponseBodyEventsStart 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 ListEventsResponseBodyEventsStart build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEventsStart self = new ListEventsResponseBodyEventsStart();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEventsStart setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public ListEventsResponseBodyEventsStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public ListEventsResponseBodyEventsStart setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class ListEventsResponseBodyEvents extends TeaModel {
@NameInMap("Attendees")
public java.util.List<ListEventsResponseBodyEventsAttendees> attendees;
@NameInMap("Categories")
public java.util.List<ListEventsResponseBodyEventsCategories> categories;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>something about this event</p>
*/
@NameInMap("Description")
public String description;
@NameInMap("End")
public ListEventsResponseBodyEventsEnd end;
@NameInMap("ExtendedProperties")
public ListEventsResponseBodyEventsExtendedProperties extendedProperties;
/**
* <strong>example:</strong>
* <p>cnNTbW1YbxxxxdEgvdlQrQT09</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsAllDay")
public Boolean isAllDay;
@NameInMap("Location")
public ListEventsResponseBodyEventsLocation location;
@NameInMap("MeetingRooms")
public java.util.List<ListEventsResponseBodyEventsMeetingRooms> meetingRooms;
@NameInMap("OnlineMeetingInfo")
public ListEventsResponseBodyEventsOnlineMeetingInfo onlineMeetingInfo;
@NameInMap("Organizer")
public ListEventsResponseBodyEventsOrganizer organizer;
@NameInMap("OriginStart")
public ListEventsResponseBodyEventsOriginStart originStart;
@NameInMap("Recurrence")
public ListEventsResponseBodyEventsRecurrence recurrence;
@NameInMap("Reminders")
public java.util.List<ListEventsResponseBodyEventsReminders> reminders;
@NameInMap("RichTextDescription")
public ListEventsResponseBodyEventsRichTextDescription richTextDescription;
/**
* <strong>example:</strong>
* <p>cnNTbWxxxxaFJZdEgvdlQrQT09</p>
*/
@NameInMap("SeriesMasterId")
public String seriesMasterId;
@NameInMap("Start")
public ListEventsResponseBodyEventsStart start;
/**
* <strong>example:</strong>
* <p>confirmed</p>
*/
@NameInMap("Status")
public String status;
@NameInMap("Summary")
public String summary;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("UpdateTime")
public String updateTime;
public static ListEventsResponseBodyEvents build(java.util.Map<String, ?> map) throws Exception {
ListEventsResponseBodyEvents self = new ListEventsResponseBodyEvents();
return TeaModel.build(map, self);
}
public ListEventsResponseBodyEvents setAttendees(java.util.List<ListEventsResponseBodyEventsAttendees> attendees) {
this.attendees = attendees;
return this;
}
public java.util.List<ListEventsResponseBodyEventsAttendees> getAttendees() {
return this.attendees;
}
public ListEventsResponseBodyEvents setCategories(java.util.List<ListEventsResponseBodyEventsCategories> categories) {
this.categories = categories;
return this;
}
public java.util.List<ListEventsResponseBodyEventsCategories> getCategories() {
return this.categories;
}
public ListEventsResponseBodyEvents setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListEventsResponseBodyEvents setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListEventsResponseBodyEvents setEnd(ListEventsResponseBodyEventsEnd end) {
this.end = end;
return this;
}
public ListEventsResponseBodyEventsEnd getEnd() {
return this.end;
}
public ListEventsResponseBodyEvents setExtendedProperties(ListEventsResponseBodyEventsExtendedProperties extendedProperties) {
this.extendedProperties = extendedProperties;
return this;
}
public ListEventsResponseBodyEventsExtendedProperties getExtendedProperties() {
return this.extendedProperties;
}
public ListEventsResponseBodyEvents setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListEventsResponseBodyEvents setIsAllDay(Boolean isAllDay) {
this.isAllDay = isAllDay;
return this;
}
public Boolean getIsAllDay() {
return this.isAllDay;
}
public ListEventsResponseBodyEvents setLocation(ListEventsResponseBodyEventsLocation location) {
this.location = location;
return this;
}
public ListEventsResponseBodyEventsLocation getLocation() {
return this.location;
}
public ListEventsResponseBodyEvents setMeetingRooms(java.util.List<ListEventsResponseBodyEventsMeetingRooms> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<ListEventsResponseBodyEventsMeetingRooms> getMeetingRooms() {
return this.meetingRooms;
}
public ListEventsResponseBodyEvents setOnlineMeetingInfo(ListEventsResponseBodyEventsOnlineMeetingInfo onlineMeetingInfo) {
this.onlineMeetingInfo = onlineMeetingInfo;
return this;
}
public ListEventsResponseBodyEventsOnlineMeetingInfo getOnlineMeetingInfo() {
return this.onlineMeetingInfo;
}
public ListEventsResponseBodyEvents setOrganizer(ListEventsResponseBodyEventsOrganizer organizer) {
this.organizer = organizer;
return this;
}
public ListEventsResponseBodyEventsOrganizer getOrganizer() {
return this.organizer;
}
public ListEventsResponseBodyEvents setOriginStart(ListEventsResponseBodyEventsOriginStart originStart) {
this.originStart = originStart;
return this;
}
public ListEventsResponseBodyEventsOriginStart getOriginStart() {
return this.originStart;
}
public ListEventsResponseBodyEvents setRecurrence(ListEventsResponseBodyEventsRecurrence recurrence) {
this.recurrence = recurrence;
return this;
}
public ListEventsResponseBodyEventsRecurrence getRecurrence() {
return this.recurrence;
}
public ListEventsResponseBodyEvents setReminders(java.util.List<ListEventsResponseBodyEventsReminders> reminders) {
this.reminders = reminders;
return this;
}
public java.util.List<ListEventsResponseBodyEventsReminders> getReminders() {
return this.reminders;
}
public ListEventsResponseBodyEvents setRichTextDescription(ListEventsResponseBodyEventsRichTextDescription richTextDescription) {
this.richTextDescription = richTextDescription;
return this;
}
public ListEventsResponseBodyEventsRichTextDescription getRichTextDescription() {
return this.richTextDescription;
}
public ListEventsResponseBodyEvents setSeriesMasterId(String seriesMasterId) {
this.seriesMasterId = seriesMasterId;
return this;
}
public String getSeriesMasterId() {
return this.seriesMasterId;
}
public ListEventsResponseBodyEvents setStart(ListEventsResponseBodyEventsStart start) {
this.start = start;
return this;
}
public ListEventsResponseBodyEventsStart getStart() {
return this.start;
}
public ListEventsResponseBodyEvents setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListEventsResponseBodyEvents setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public ListEventsResponseBodyEvents setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListEventsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListEventsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListEventsShrinkHeaders self = new ListEventsShrinkHeaders();
return TeaModel.build(map, self);
}
public ListEventsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListEventsShrinkHeaders 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/ListEventsViewHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsViewHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListEventsViewHeadersAccountContext accountContext;
public static ListEventsViewHeaders build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewHeaders self = new ListEventsViewHeaders();
return TeaModel.build(map, self);
}
public ListEventsViewHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListEventsViewHeaders setAccountContext(ListEventsViewHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListEventsViewHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListEventsViewHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListEventsViewHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewHeadersAccountContext self = new ListEventsViewHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListEventsViewHeadersAccountContext 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/ListEventsViewRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsViewRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>primary</p>
*/
@NameInMap("CalendarId")
public String calendarId;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxAttendees")
public Integer maxAttendees;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>cnNTbW1xxx</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>2022-11-28T00:00:00+08:00</p>
*/
@NameInMap("TimeMax")
public String timeMax;
/**
* <strong>example:</strong>
* <p>2022-11-27T00:00:00+08:00</p>
*/
@NameInMap("TimeMin")
public String timeMin;
public static ListEventsViewRequest build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewRequest self = new ListEventsViewRequest();
return TeaModel.build(map, self);
}
public ListEventsViewRequest setCalendarId(String calendarId) {
this.calendarId = calendarId;
return this;
}
public String getCalendarId() {
return this.calendarId;
}
public ListEventsViewRequest setMaxAttendees(Integer maxAttendees) {
this.maxAttendees = maxAttendees;
return this;
}
public Integer getMaxAttendees() {
return this.maxAttendees;
}
public ListEventsViewRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListEventsViewRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListEventsViewRequest setTimeMax(String timeMax) {
this.timeMax = timeMax;
return this;
}
public String getTimeMax() {
return this.timeMax;
}
public ListEventsViewRequest setTimeMin(String timeMin) {
this.timeMin = timeMin;
return this;
}
public String getTimeMin() {
return this.timeMin;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListEventsViewResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsViewResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListEventsViewResponseBody body;
public static ListEventsViewResponse build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponse self = new ListEventsViewResponse();
return TeaModel.build(map, self);
}
public ListEventsViewResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListEventsViewResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListEventsViewResponse setBody(ListEventsViewResponseBody body) {
this.body = body;
return this;
}
public ListEventsViewResponseBody 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/ListEventsViewResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsViewResponseBody extends TeaModel {
@NameInMap("events")
public java.util.List<ListEventsViewResponseBodyEvents> events;
/**
* <strong>example:</strong>
* <p>cnNTbWxxx</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static ListEventsViewResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBody self = new ListEventsViewResponseBody();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBody setEvents(java.util.List<ListEventsViewResponseBodyEvents> events) {
this.events = events;
return this;
}
public java.util.List<ListEventsViewResponseBodyEvents> getEvents() {
return this.events;
}
public ListEventsViewResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListEventsViewResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class ListEventsViewResponseBodyEventsAttendees extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsOptional")
public Boolean isOptional;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Self")
public Boolean self;
public static ListEventsViewResponseBodyEventsAttendees build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsAttendees self = new ListEventsViewResponseBodyEventsAttendees();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsAttendees setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsViewResponseBodyEventsAttendees setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListEventsViewResponseBodyEventsAttendees setIsOptional(Boolean isOptional) {
this.isOptional = isOptional;
return this;
}
public Boolean getIsOptional() {
return this.isOptional;
}
public ListEventsViewResponseBodyEventsAttendees setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsViewResponseBodyEventsAttendees setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class ListEventsViewResponseBodyEventsCategories extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
public static ListEventsViewResponseBodyEventsCategories build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsCategories self = new ListEventsViewResponseBodyEventsCategories();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsCategories setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
}
public static class ListEventsViewResponseBodyEventsEnd 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 ListEventsViewResponseBodyEventsEnd build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsEnd self = new ListEventsViewResponseBodyEventsEnd();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsEnd setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public ListEventsViewResponseBodyEventsEnd setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public ListEventsViewResponseBodyEventsEnd setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties extends TeaModel {
/**
* <strong>example:</strong>
* <p>dingd8*****1231</p>
*/
@NameInMap("BelongCorpId")
public String belongCorpId;
/**
* <strong>example:</strong>
* <p>zxcvasdfa123===</p>
*/
@NameInMap("SourceOpenCid")
public String sourceOpenCid;
public static ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties self = new ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties setBelongCorpId(String belongCorpId) {
this.belongCorpId = belongCorpId;
return this;
}
public String getBelongCorpId() {
return this.belongCorpId;
}
public ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties setSourceOpenCid(String sourceOpenCid) {
this.sourceOpenCid = sourceOpenCid;
return this;
}
public String getSourceOpenCid() {
return this.sourceOpenCid;
}
}
public static class ListEventsViewResponseBodyEventsExtendedProperties extends TeaModel {
@NameInMap("SharedProperties")
public ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties sharedProperties;
public static ListEventsViewResponseBodyEventsExtendedProperties build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsExtendedProperties self = new ListEventsViewResponseBodyEventsExtendedProperties();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsExtendedProperties setSharedProperties(ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties sharedProperties) {
this.sharedProperties = sharedProperties;
return this;
}
public ListEventsViewResponseBodyEventsExtendedPropertiesSharedProperties getSharedProperties() {
return this.sharedProperties;
}
}
public static class ListEventsViewResponseBodyEventsLocation extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
@NameInMap("MeetingRooms")
public java.util.List<String> meetingRooms;
public static ListEventsViewResponseBodyEventsLocation build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsLocation self = new ListEventsViewResponseBodyEventsLocation();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsLocation setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsViewResponseBodyEventsLocation setMeetingRooms(java.util.List<String> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<String> getMeetingRooms() {
return this.meetingRooms;
}
}
public static class ListEventsViewResponseBodyEventsMeetingRooms extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</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 ListEventsViewResponseBodyEventsMeetingRooms build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsMeetingRooms self = new ListEventsViewResponseBodyEventsMeetingRooms();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsMeetingRooms setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsViewResponseBodyEventsMeetingRooms setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsViewResponseBodyEventsMeetingRooms setRoomId(String roomId) {
this.roomId = roomId;
return this;
}
public String getRoomId() {
return this.roomId;
}
}
public static class ListEventsViewResponseBodyEventsOnlineMeetingInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>5c4df2xxx</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/xxx?confId=xxx&calendarId=xxx</p>
*/
@NameInMap("Url")
public String url;
public static ListEventsViewResponseBodyEventsOnlineMeetingInfo build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsOnlineMeetingInfo self = new ListEventsViewResponseBodyEventsOnlineMeetingInfo();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsOnlineMeetingInfo setConferenceId(String conferenceId) {
this.conferenceId = conferenceId;
return this;
}
public String getConferenceId() {
return this.conferenceId;
}
public ListEventsViewResponseBodyEventsOnlineMeetingInfo setExtraInfo(java.util.Map<String, ?> extraInfo) {
this.extraInfo = extraInfo;
return this;
}
public java.util.Map<String, ?> getExtraInfo() {
return this.extraInfo;
}
public ListEventsViewResponseBodyEventsOnlineMeetingInfo setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListEventsViewResponseBodyEventsOnlineMeetingInfo setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class ListEventsViewResponseBodyEventsOrganizer extends TeaModel {
/**
* <strong>example:</strong>
* <p>tony</p>
*/
@NameInMap("DisplayName")
public String displayName;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>accepted</p>
*/
@NameInMap("ResponseStatus")
public String responseStatus;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Self")
public Boolean self;
public static ListEventsViewResponseBodyEventsOrganizer build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsOrganizer self = new ListEventsViewResponseBodyEventsOrganizer();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsOrganizer setDisplayName(String displayName) {
this.displayName = displayName;
return this;
}
public String getDisplayName() {
return this.displayName;
}
public ListEventsViewResponseBodyEventsOrganizer setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListEventsViewResponseBodyEventsOrganizer setResponseStatus(String responseStatus) {
this.responseStatus = responseStatus;
return this;
}
public String getResponseStatus() {
return this.responseStatus;
}
public ListEventsViewResponseBodyEventsOrganizer setSelf(Boolean self) {
this.self = self;
return this;
}
public Boolean getSelf() {
return this.self;
}
}
public static class ListEventsViewResponseBodyEventsOriginStart extends TeaModel {
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("DateTime")
public String dateTime;
public static ListEventsViewResponseBodyEventsOriginStart build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsOriginStart self = new ListEventsViewResponseBodyEventsOriginStart();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsOriginStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
}
public static class ListEventsViewResponseBodyEventsRecurrencePattern extends TeaModel {
/**
* <strong>example:</strong>
* <p>14</p>
*/
@NameInMap("DayOfMonth")
public Integer dayOfMonth;
/**
* <strong>example:</strong>
* <p>sunday</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>dingtalk</p>
*/
@NameInMap("Type")
public String type;
public static ListEventsViewResponseBodyEventsRecurrencePattern build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsRecurrencePattern self = new ListEventsViewResponseBodyEventsRecurrencePattern();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsRecurrencePattern setDayOfMonth(Integer dayOfMonth) {
this.dayOfMonth = dayOfMonth;
return this;
}
public Integer getDayOfMonth() {
return this.dayOfMonth;
}
public ListEventsViewResponseBodyEventsRecurrencePattern setDaysOfWeek(String daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public String getDaysOfWeek() {
return this.daysOfWeek;
}
public ListEventsViewResponseBodyEventsRecurrencePattern setIndex(String index) {
this.index = index;
return this;
}
public String getIndex() {
return this.index;
}
public ListEventsViewResponseBodyEventsRecurrencePattern setInterval(Integer interval) {
this.interval = interval;
return this;
}
public Integer getInterval() {
return this.interval;
}
public ListEventsViewResponseBodyEventsRecurrencePattern setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListEventsViewResponseBodyEventsRecurrenceRange 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>dingtalk</p>
*/
@NameInMap("Type")
public String type;
public static ListEventsViewResponseBodyEventsRecurrenceRange build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsRecurrenceRange self = new ListEventsViewResponseBodyEventsRecurrenceRange();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsRecurrenceRange setEndDate(String endDate) {
this.endDate = endDate;
return this;
}
public String getEndDate() {
return this.endDate;
}
public ListEventsViewResponseBodyEventsRecurrenceRange setNumberOfOccurrences(Integer numberOfOccurrences) {
this.numberOfOccurrences = numberOfOccurrences;
return this;
}
public Integer getNumberOfOccurrences() {
return this.numberOfOccurrences;
}
public ListEventsViewResponseBodyEventsRecurrenceRange setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListEventsViewResponseBodyEventsRecurrence extends TeaModel {
@NameInMap("Pattern")
public ListEventsViewResponseBodyEventsRecurrencePattern pattern;
@NameInMap("Range")
public ListEventsViewResponseBodyEventsRecurrenceRange range;
public static ListEventsViewResponseBodyEventsRecurrence build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsRecurrence self = new ListEventsViewResponseBodyEventsRecurrence();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsRecurrence setPattern(ListEventsViewResponseBodyEventsRecurrencePattern pattern) {
this.pattern = pattern;
return this;
}
public ListEventsViewResponseBodyEventsRecurrencePattern getPattern() {
return this.pattern;
}
public ListEventsViewResponseBodyEventsRecurrence setRange(ListEventsViewResponseBodyEventsRecurrenceRange range) {
this.range = range;
return this;
}
public ListEventsViewResponseBodyEventsRecurrenceRange getRange() {
return this.range;
}
}
public static class ListEventsViewResponseBodyEventsRichTextDescription extends TeaModel {
@NameInMap("Text")
public String text;
public static ListEventsViewResponseBodyEventsRichTextDescription build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsRichTextDescription self = new ListEventsViewResponseBodyEventsRichTextDescription();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsRichTextDescription setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
public static class ListEventsViewResponseBodyEventsStart 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 ListEventsViewResponseBodyEventsStart build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEventsStart self = new ListEventsViewResponseBodyEventsStart();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEventsStart setDate(String date) {
this.date = date;
return this;
}
public String getDate() {
return this.date;
}
public ListEventsViewResponseBodyEventsStart setDateTime(String dateTime) {
this.dateTime = dateTime;
return this;
}
public String getDateTime() {
return this.dateTime;
}
public ListEventsViewResponseBodyEventsStart setTimeZone(String timeZone) {
this.timeZone = timeZone;
return this;
}
public String getTimeZone() {
return this.timeZone;
}
}
public static class ListEventsViewResponseBodyEvents extends TeaModel {
@NameInMap("Attendees")
public java.util.List<ListEventsViewResponseBodyEventsAttendees> attendees;
@NameInMap("Categories")
public java.util.List<ListEventsViewResponseBodyEventsCategories> categories;
/**
* <strong>example:</strong>
* <p>2020-01-01T10:15:30+08:00</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>something about this event</p>
*/
@NameInMap("Description")
public String description;
@NameInMap("End")
public ListEventsViewResponseBodyEventsEnd end;
@NameInMap("ExtendedProperties")
public ListEventsViewResponseBodyEventsExtendedProperties extendedProperties;
/**
* <strong>example:</strong>
* <p>iiiP35xxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsAllDay")
public Boolean isAllDay;
@NameInMap("Location")
public ListEventsViewResponseBodyEventsLocation location;
@NameInMap("MeetingRooms")
public java.util.List<ListEventsViewResponseBodyEventsMeetingRooms> meetingRooms;
@NameInMap("OnlineMeetingInfo")
public ListEventsViewResponseBodyEventsOnlineMeetingInfo onlineMeetingInfo;
@NameInMap("Organizer")
public ListEventsViewResponseBodyEventsOrganizer organizer;
@NameInMap("OriginStart")
public ListEventsViewResponseBodyEventsOriginStart originStart;
@NameInMap("Recurrence")
public ListEventsViewResponseBodyEventsRecurrence recurrence;
@NameInMap("RichTextDescription")
public ListEventsViewResponseBodyEventsRichTextDescription richTextDescription;
/**
* <strong>example:</strong>
* <p>cnNTbxxx</p>
*/
@NameInMap("SeriesMasterId")
public String seriesMasterId;
@NameInMap("Start")
public ListEventsViewResponseBodyEventsStart 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 ListEventsViewResponseBodyEvents build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewResponseBodyEvents self = new ListEventsViewResponseBodyEvents();
return TeaModel.build(map, self);
}
public ListEventsViewResponseBodyEvents setAttendees(java.util.List<ListEventsViewResponseBodyEventsAttendees> attendees) {
this.attendees = attendees;
return this;
}
public java.util.List<ListEventsViewResponseBodyEventsAttendees> getAttendees() {
return this.attendees;
}
public ListEventsViewResponseBodyEvents setCategories(java.util.List<ListEventsViewResponseBodyEventsCategories> categories) {
this.categories = categories;
return this;
}
public java.util.List<ListEventsViewResponseBodyEventsCategories> getCategories() {
return this.categories;
}
public ListEventsViewResponseBodyEvents setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListEventsViewResponseBodyEvents setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListEventsViewResponseBodyEvents setEnd(ListEventsViewResponseBodyEventsEnd end) {
this.end = end;
return this;
}
public ListEventsViewResponseBodyEventsEnd getEnd() {
return this.end;
}
public ListEventsViewResponseBodyEvents setExtendedProperties(ListEventsViewResponseBodyEventsExtendedProperties extendedProperties) {
this.extendedProperties = extendedProperties;
return this;
}
public ListEventsViewResponseBodyEventsExtendedProperties getExtendedProperties() {
return this.extendedProperties;
}
public ListEventsViewResponseBodyEvents setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListEventsViewResponseBodyEvents setIsAllDay(Boolean isAllDay) {
this.isAllDay = isAllDay;
return this;
}
public Boolean getIsAllDay() {
return this.isAllDay;
}
public ListEventsViewResponseBodyEvents setLocation(ListEventsViewResponseBodyEventsLocation location) {
this.location = location;
return this;
}
public ListEventsViewResponseBodyEventsLocation getLocation() {
return this.location;
}
public ListEventsViewResponseBodyEvents setMeetingRooms(java.util.List<ListEventsViewResponseBodyEventsMeetingRooms> meetingRooms) {
this.meetingRooms = meetingRooms;
return this;
}
public java.util.List<ListEventsViewResponseBodyEventsMeetingRooms> getMeetingRooms() {
return this.meetingRooms;
}
public ListEventsViewResponseBodyEvents setOnlineMeetingInfo(ListEventsViewResponseBodyEventsOnlineMeetingInfo onlineMeetingInfo) {
this.onlineMeetingInfo = onlineMeetingInfo;
return this;
}
public ListEventsViewResponseBodyEventsOnlineMeetingInfo getOnlineMeetingInfo() {
return this.onlineMeetingInfo;
}
public ListEventsViewResponseBodyEvents setOrganizer(ListEventsViewResponseBodyEventsOrganizer organizer) {
this.organizer = organizer;
return this;
}
public ListEventsViewResponseBodyEventsOrganizer getOrganizer() {
return this.organizer;
}
public ListEventsViewResponseBodyEvents setOriginStart(ListEventsViewResponseBodyEventsOriginStart originStart) {
this.originStart = originStart;
return this;
}
public ListEventsViewResponseBodyEventsOriginStart getOriginStart() {
return this.originStart;
}
public ListEventsViewResponseBodyEvents setRecurrence(ListEventsViewResponseBodyEventsRecurrence recurrence) {
this.recurrence = recurrence;
return this;
}
public ListEventsViewResponseBodyEventsRecurrence getRecurrence() {
return this.recurrence;
}
public ListEventsViewResponseBodyEvents setRichTextDescription(ListEventsViewResponseBodyEventsRichTextDescription richTextDescription) {
this.richTextDescription = richTextDescription;
return this;
}
public ListEventsViewResponseBodyEventsRichTextDescription getRichTextDescription() {
return this.richTextDescription;
}
public ListEventsViewResponseBodyEvents setSeriesMasterId(String seriesMasterId) {
this.seriesMasterId = seriesMasterId;
return this;
}
public String getSeriesMasterId() {
return this.seriesMasterId;
}
public ListEventsViewResponseBodyEvents setStart(ListEventsViewResponseBodyEventsStart start) {
this.start = start;
return this;
}
public ListEventsViewResponseBodyEventsStart getStart() {
return this.start;
}
public ListEventsViewResponseBodyEvents setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListEventsViewResponseBodyEvents setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public ListEventsViewResponseBodyEvents setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListEventsViewShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListEventsViewShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListEventsViewShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListEventsViewShrinkHeaders self = new ListEventsViewShrinkHeaders();
return TeaModel.build(map, self);
}
public ListEventsViewShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListEventsViewShrinkHeaders 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/ListFormRemarksHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListFormRemarksHeadersAccountContext accountContext;
public static ListFormRemarksHeaders build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksHeaders self = new ListFormRemarksHeaders();
return TeaModel.build(map, self);
}
public ListFormRemarksHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListFormRemarksHeaders setAccountContext(ListFormRemarksHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListFormRemarksHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListFormRemarksHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListFormRemarksHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksHeadersAccountContext self = new ListFormRemarksHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListFormRemarksHeadersAccountContext 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/ListFormRemarksRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksRequest 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("FormInstanceIdList")
public java.util.List<String> formInstanceIdList;
/**
* <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 ListFormRemarksRequest build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksRequest self = new ListFormRemarksRequest();
return TeaModel.build(map, self);
}
public ListFormRemarksRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListFormRemarksRequest setFormInstanceIdList(java.util.List<String> formInstanceIdList) {
this.formInstanceIdList = formInstanceIdList;
return this;
}
public java.util.List<String> getFormInstanceIdList() {
return this.formInstanceIdList;
}
public ListFormRemarksRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public ListFormRemarksRequest 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/ListFormRemarksResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListFormRemarksResponseBody body;
public static ListFormRemarksResponse build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksResponse self = new ListFormRemarksResponse();
return TeaModel.build(map, self);
}
public ListFormRemarksResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListFormRemarksResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListFormRemarksResponse setBody(ListFormRemarksResponseBody body) {
this.body = body;
return this;
}
public ListFormRemarksResponseBody 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/ListFormRemarksResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("formRemarkVoMap")
public java.util.Map<String, ?> formRemarkVoMap;
/**
* <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 ListFormRemarksResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksResponseBody self = new ListFormRemarksResponseBody();
return TeaModel.build(map, self);
}
public ListFormRemarksResponseBody setFormRemarkVoMap(java.util.Map<String, ?> formRemarkVoMap) {
this.formRemarkVoMap = formRemarkVoMap;
return this;
}
public java.util.Map<String, ?> getFormRemarkVoMap() {
return this.formRemarkVoMap;
}
public ListFormRemarksResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListFormRemarksResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListFormRemarksResponseBody 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/ListFormRemarksShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListFormRemarksShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksShrinkHeaders self = new ListFormRemarksShrinkHeaders();
return TeaModel.build(map, self);
}
public ListFormRemarksShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListFormRemarksShrinkHeaders 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/ListFormRemarksShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListFormRemarksShrinkRequest 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("FormInstanceIdList")
public String formInstanceIdListShrink;
/**
* <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 ListFormRemarksShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListFormRemarksShrinkRequest self = new ListFormRemarksShrinkRequest();
return TeaModel.build(map, self);
}
public ListFormRemarksShrinkRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListFormRemarksShrinkRequest setFormInstanceIdListShrink(String formInstanceIdListShrink) {
this.formInstanceIdListShrink = formInstanceIdListShrink;
return this;
}
public String getFormInstanceIdListShrink() {
return this.formInstanceIdListShrink;
}
public ListFormRemarksShrinkRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public ListFormRemarksShrinkRequest 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/ListMessageHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMessageHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListMessageHeaders build(java.util.Map<String, ?> map) throws Exception {
ListMessageHeaders self = new ListMessageHeaders();
return TeaModel.build(map, self);
}
public ListMessageHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListMessageHeaders 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/ListMessageRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMessageRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>assistantId1</p>
*/
@NameInMap("assistantId")
public String assistantId;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("limit")
public Integer limit;
/**
* <strong>example:</strong>
* <p>desc</p>
*/
@NameInMap("order")
public String order;
/**
* <strong>example:</strong>
* <p>assistantId2</p>
*/
@NameInMap("originalAssistantId")
public String originalAssistantId;
/**
* <strong>example:</strong>
* <p>runId123</p>
*/
@NameInMap("runId")
public String runId;
/**
* <strong>example:</strong>
* <p>agentKey1</p>
*/
@NameInMap("sourceIdOfOriginalAssistantId")
public String sourceIdOfOriginalAssistantId;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("sourceTypeOfOriginalAssistantId")
public String sourceTypeOfOriginalAssistantId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>threadId123</p>
*/
@NameInMap("threadId")
public String threadId;
public static ListMessageRequest build(java.util.Map<String, ?> map) throws Exception {
ListMessageRequest self = new ListMessageRequest();
return TeaModel.build(map, self);
}
public ListMessageRequest setAssistantId(String assistantId) {
this.assistantId = assistantId;
return this;
}
public String getAssistantId() {
return this.assistantId;
}
public ListMessageRequest setLimit(Integer limit) {
this.limit = limit;
return this;
}
public Integer getLimit() {
return this.limit;
}
public ListMessageRequest setOrder(String order) {
this.order = order;
return this;
}
public String getOrder() {
return this.order;
}
public ListMessageRequest setOriginalAssistantId(String originalAssistantId) {
this.originalAssistantId = originalAssistantId;
return this;
}
public String getOriginalAssistantId() {
return this.originalAssistantId;
}
public ListMessageRequest setRunId(String runId) {
this.runId = runId;
return this;
}
public String getRunId() {
return this.runId;
}
public ListMessageRequest setSourceIdOfOriginalAssistantId(String sourceIdOfOriginalAssistantId) {
this.sourceIdOfOriginalAssistantId = sourceIdOfOriginalAssistantId;
return this;
}
public String getSourceIdOfOriginalAssistantId() {
return this.sourceIdOfOriginalAssistantId;
}
public ListMessageRequest setSourceTypeOfOriginalAssistantId(String sourceTypeOfOriginalAssistantId) {
this.sourceTypeOfOriginalAssistantId = sourceTypeOfOriginalAssistantId;
return this;
}
public String getSourceTypeOfOriginalAssistantId() {
return this.sourceTypeOfOriginalAssistantId;
}
public ListMessageRequest setThreadId(String threadId) {
this.threadId = threadId;
return this;
}
public String getThreadId() {
return this.threadId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListMessageResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMessageResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListMessageResponseBody body;
public static ListMessageResponse build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponse self = new ListMessageResponse();
return TeaModel.build(map, self);
}
public ListMessageResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListMessageResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListMessageResponse setBody(ListMessageResponseBody body) {
this.body = body;
return this;
}
public ListMessageResponseBody 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/ListMessageResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMessageResponseBody extends TeaModel {
@NameInMap("messages")
public java.util.List<ListMessageResponseBodyMessages> messages;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static ListMessageResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBody self = new ListMessageResponseBody();
return TeaModel.build(map, self);
}
public ListMessageResponseBody setMessages(java.util.List<ListMessageResponseBodyMessages> messages) {
this.messages = messages;
return this;
}
public java.util.List<ListMessageResponseBodyMessages> getMessages() {
return this.messages;
}
public ListMessageResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class ListMessageResponseBodyMessagesContentCardCallback extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("content")
public String content;
/**
* <strong>example:</strong>
* <p>aliding_messageId123</p>
*/
@NameInMap("relatedMessageId")
public String relatedMessageId;
public static ListMessageResponseBodyMessagesContentCardCallback build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentCardCallback self = new ListMessageResponseBodyMessagesContentCardCallback();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentCardCallback setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public ListMessageResponseBodyMessagesContentCardCallback setRelatedMessageId(String relatedMessageId) {
this.relatedMessageId = relatedMessageId;
return this;
}
public String getRelatedMessageId() {
return this.relatedMessageId;
}
}
public static class ListMessageResponseBodyMessagesContentDingCard 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 ListMessageResponseBodyMessagesContentDingCard build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingCard self = new ListMessageResponseBodyMessagesContentDingCard();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingCard setContent(String content) {
this.content = content;
return this;
}
public String getContent() {
return this.content;
}
public ListMessageResponseBodyMessagesContentDingCard setContentType(String contentType) {
this.contentType = contentType;
return this;
}
public String getContentType() {
return this.contentType;
}
public ListMessageResponseBodyMessagesContentDingCard setFinished(Boolean finished) {
this.finished = finished;
return this;
}
public Boolean getFinished() {
return this.finished;
}
public ListMessageResponseBodyMessagesContentDingCard setTemplateId(String templateId) {
this.templateId = templateId;
return this;
}
public String getTemplateId() {
return this.templateId;
}
}
public static class ListMessageResponseBodyMessagesContentDingNormalCardCardData extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("cardParamMap")
public java.util.Map<String, ?> cardParamMap;
public static ListMessageResponseBodyMessagesContentDingNormalCardCardData build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingNormalCardCardData self = new ListMessageResponseBodyMessagesContentDingNormalCardCardData();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingNormalCardCardData setCardParamMap(java.util.Map<String, ?> cardParamMap) {
this.cardParamMap = cardParamMap;
return this;
}
public java.util.Map<String, ?> getCardParamMap() {
return this.cardParamMap;
}
}
public static class ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("updateCardDataByKey")
public Boolean updateCardDataByKey;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("updatePrivateDataByKey")
public Boolean updatePrivateDataByKey;
public static ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions self = new ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions setUpdateCardDataByKey(Boolean updateCardDataByKey) {
this.updateCardDataByKey = updateCardDataByKey;
return this;
}
public Boolean getUpdateCardDataByKey() {
return this.updateCardDataByKey;
}
public ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions setUpdatePrivateDataByKey(Boolean updatePrivateDataByKey) {
this.updatePrivateDataByKey = updatePrivateDataByKey;
return this;
}
public Boolean getUpdatePrivateDataByKey() {
return this.updatePrivateDataByKey;
}
}
public static class ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig 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 ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig self = new ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setInterval(Integer interval) {
this.interval = interval;
return this;
}
public Integer getInterval() {
return this.interval;
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setPullStrategy(String pullStrategy) {
this.pullStrategy = pullStrategy;
return this;
}
public String getPullStrategy() {
return this.pullStrategy;
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig setTimeUnit(String timeUnit) {
this.timeUnit = timeUnit;
return this;
}
public String getTimeUnit() {
return this.timeUnit;
}
}
public static class ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs 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 ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig pullConfig;
public static ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs self = new ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs setConstParams(java.util.Map<String, ?> constParams) {
this.constParams = constParams;
return this;
}
public java.util.Map<String, ?> getConstParams() {
return this.constParams;
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs setDynamicDataSourceId(String dynamicDataSourceId) {
this.dynamicDataSourceId = dynamicDataSourceId;
return this;
}
public String getDynamicDataSourceId() {
return this.dynamicDataSourceId;
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs setPullConfig(ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig pullConfig) {
this.pullConfig = pullConfig;
return this;
}
public ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigsPullConfig getPullConfig() {
return this.pullConfig;
}
}
public static class ListMessageResponseBodyMessagesContentDingNormalCard extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("cardData")
public ListMessageResponseBodyMessagesContentDingNormalCardCardData cardData;
/**
* <strong>example:</strong>
* <p>templateId1</p>
*/
@NameInMap("cardTemplateId")
public String cardTemplateId;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("cardUpdateOptions")
public ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions cardUpdateOptions;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dynamicDataSourceConfigs")
public java.util.List<ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs> dynamicDataSourceConfigs;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("privateData")
public java.util.Map<String, java.util.Map<String, ?>> privateData;
public static ListMessageResponseBodyMessagesContentDingNormalCard build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentDingNormalCard self = new ListMessageResponseBodyMessagesContentDingNormalCard();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentDingNormalCard setCardData(ListMessageResponseBodyMessagesContentDingNormalCardCardData cardData) {
this.cardData = cardData;
return this;
}
public ListMessageResponseBodyMessagesContentDingNormalCardCardData getCardData() {
return this.cardData;
}
public ListMessageResponseBodyMessagesContentDingNormalCard setCardTemplateId(String cardTemplateId) {
this.cardTemplateId = cardTemplateId;
return this;
}
public String getCardTemplateId() {
return this.cardTemplateId;
}
public ListMessageResponseBodyMessagesContentDingNormalCard setCardUpdateOptions(ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions cardUpdateOptions) {
this.cardUpdateOptions = cardUpdateOptions;
return this;
}
public ListMessageResponseBodyMessagesContentDingNormalCardCardUpdateOptions getCardUpdateOptions() {
return this.cardUpdateOptions;
}
public ListMessageResponseBodyMessagesContentDingNormalCard setDynamicDataSourceConfigs(java.util.List<ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs> dynamicDataSourceConfigs) {
this.dynamicDataSourceConfigs = dynamicDataSourceConfigs;
return this;
}
public java.util.List<ListMessageResponseBodyMessagesContentDingNormalCardDynamicDataSourceConfigs> getDynamicDataSourceConfigs() {
return this.dynamicDataSourceConfigs;
}
public ListMessageResponseBodyMessagesContentDingNormalCard setPrivateData(java.util.Map<String, java.util.Map<String, ?>> privateData) {
this.privateData = privateData;
return this;
}
public java.util.Map<String, java.util.Map<String, ?>> getPrivateData() {
return this.privateData;
}
}
public static class ListMessageResponseBodyMessagesContentMarkdown extends TeaModel {
/**
* <strong>example:</strong>
* <ol>
* <li>markdown内容</li>
* <li>markdown内容</li>
* </ol>
*/
@NameInMap("value")
public String value;
public static ListMessageResponseBodyMessagesContentMarkdown build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentMarkdown self = new ListMessageResponseBodyMessagesContentMarkdown();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentMarkdown setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsDataPart extends TeaModel {
@NameInMap("data")
public Object data;
public static ListMessageResponseBodyMessagesContentStructViewPartsDataPart build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsDataPart self = new ListMessageResponseBodyMessagesContentStructViewPartsDataPart();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsDataPart setData(Object data) {
this.data = data;
return this;
}
public Object getData() {
return this.data;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsReasonPart extends TeaModel {
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("reason")
public String reason;
public static ListMessageResponseBodyMessagesContentStructViewPartsReasonPart build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsReasonPart self = new ListMessageResponseBodyMessagesContentStructViewPartsReasonPart();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsReasonPart setReason(String reason) {
this.reason = reason;
return this;
}
public String getReason() {
return this.reason;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends extends TeaModel {
@NameInMap("mobileUrl")
public String mobileUrl;
@NameInMap("text")
public String text;
@NameInMap("url")
public String url;
public static ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends self = new ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart extends TeaModel {
@NameInMap("recommends")
public java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends> recommends;
public static ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart self = new ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart setRecommends(java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends> recommends) {
this.recommends = recommends;
return this;
}
public java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsRecommendPartRecommends> getRecommends() {
return this.recommends;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences 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 ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences self = new ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setIndex(String index) {
this.index = index;
return this;
}
public String getIndex() {
return this.index;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setSourceCode(String sourceCode) {
this.sourceCode = sourceCode;
return this;
}
public String getSourceCode() {
return this.sourceCode;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setSourceIcon(String sourceIcon) {
this.sourceIcon = sourceIcon;
return this;
}
public String getSourceIcon() {
return this.sourceIcon;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setSummary(String summary) {
this.summary = summary;
return this;
}
public String getSummary() {
return this.summary;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsReferencePart extends TeaModel {
@NameInMap("references")
public java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences> references;
public static ListMessageResponseBodyMessagesContentStructViewPartsReferencePart build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsReferencePart self = new ListMessageResponseBodyMessagesContentStructViewPartsReferencePart();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePart setReferences(java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences> references) {
this.references = references;
return this;
}
public java.util.List<ListMessageResponseBodyMessagesContentStructViewPartsReferencePartReferences> getReferences() {
return this.references;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewPartsTextPart extends TeaModel {
/**
* <strong>example:</strong>
* <p>123123</p>
*/
@NameInMap("text")
public String text;
public static ListMessageResponseBodyMessagesContentStructViewPartsTextPart build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewPartsTextPart self = new ListMessageResponseBodyMessagesContentStructViewPartsTextPart();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewPartsTextPart setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
public static class ListMessageResponseBodyMessagesContentStructViewParts extends TeaModel {
@NameInMap("append")
public Boolean append;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dataPart")
public ListMessageResponseBodyMessagesContentStructViewPartsDataPart 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 ListMessageResponseBodyMessagesContentStructViewPartsReasonPart reasonPart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("recommendPart")
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart recommendPart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("referencePart")
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePart referencePart;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("textPart")
public ListMessageResponseBodyMessagesContentStructViewPartsTextPart textPart;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>textPart</p>
*/
@NameInMap("type")
public String type;
public static ListMessageResponseBodyMessagesContentStructViewParts build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructViewParts self = new ListMessageResponseBodyMessagesContentStructViewParts();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructViewParts setAppend(Boolean append) {
this.append = append;
return this;
}
public Boolean getAppend() {
return this.append;
}
public ListMessageResponseBodyMessagesContentStructViewParts setDataPart(ListMessageResponseBodyMessagesContentStructViewPartsDataPart dataPart) {
this.dataPart = dataPart;
return this;
}
public ListMessageResponseBodyMessagesContentStructViewPartsDataPart getDataPart() {
return this.dataPart;
}
public ListMessageResponseBodyMessagesContentStructViewParts setFinish(Boolean finish) {
this.finish = finish;
return this;
}
public Boolean getFinish() {
return this.finish;
}
public ListMessageResponseBodyMessagesContentStructViewParts setPartDesc(String partDesc) {
this.partDesc = partDesc;
return this;
}
public String getPartDesc() {
return this.partDesc;
}
public ListMessageResponseBodyMessagesContentStructViewParts setPartId(String partId) {
this.partId = partId;
return this;
}
public String getPartId() {
return this.partId;
}
public ListMessageResponseBodyMessagesContentStructViewParts setReasonPart(ListMessageResponseBodyMessagesContentStructViewPartsReasonPart reasonPart) {
this.reasonPart = reasonPart;
return this;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReasonPart getReasonPart() {
return this.reasonPart;
}
public ListMessageResponseBodyMessagesContentStructViewParts setRecommendPart(ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart recommendPart) {
this.recommendPart = recommendPart;
return this;
}
public ListMessageResponseBodyMessagesContentStructViewPartsRecommendPart getRecommendPart() {
return this.recommendPart;
}
public ListMessageResponseBodyMessagesContentStructViewParts setReferencePart(ListMessageResponseBodyMessagesContentStructViewPartsReferencePart referencePart) {
this.referencePart = referencePart;
return this;
}
public ListMessageResponseBodyMessagesContentStructViewPartsReferencePart getReferencePart() {
return this.referencePart;
}
public ListMessageResponseBodyMessagesContentStructViewParts setTextPart(ListMessageResponseBodyMessagesContentStructViewPartsTextPart textPart) {
this.textPart = textPart;
return this;
}
public ListMessageResponseBodyMessagesContentStructViewPartsTextPart getTextPart() {
return this.textPart;
}
public ListMessageResponseBodyMessagesContentStructViewParts setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListMessageResponseBodyMessagesContentStructView extends TeaModel {
@NameInMap("parts")
public java.util.List<ListMessageResponseBodyMessagesContentStructViewParts> parts;
public static ListMessageResponseBodyMessagesContentStructView build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentStructView self = new ListMessageResponseBodyMessagesContentStructView();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentStructView setParts(java.util.List<ListMessageResponseBodyMessagesContentStructViewParts> parts) {
this.parts = parts;
return this;
}
public java.util.List<ListMessageResponseBodyMessagesContentStructViewParts> getParts() {
return this.parts;
}
}
public static class ListMessageResponseBodyMessagesContentText extends TeaModel {
/**
* <strong>example:</strong>
* <p>你好!</p>
*/
@NameInMap("value")
public String value;
public static ListMessageResponseBodyMessagesContentText build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContentText self = new ListMessageResponseBodyMessagesContentText();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContentText setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class ListMessageResponseBodyMessagesContent extends TeaModel {
@NameInMap("cardCallback")
public ListMessageResponseBodyMessagesContentCardCallback cardCallback;
@NameInMap("dingCard")
public ListMessageResponseBodyMessagesContentDingCard dingCard;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("dingNormalCard")
public ListMessageResponseBodyMessagesContentDingNormalCard dingNormalCard;
@NameInMap("markdown")
public ListMessageResponseBodyMessagesContentMarkdown markdown;
@NameInMap("structView")
public ListMessageResponseBodyMessagesContentStructView structView;
@NameInMap("text")
public ListMessageResponseBodyMessagesContentText 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 ListMessageResponseBodyMessagesContent build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessagesContent self = new ListMessageResponseBodyMessagesContent();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessagesContent setCardCallback(ListMessageResponseBodyMessagesContentCardCallback cardCallback) {
this.cardCallback = cardCallback;
return this;
}
public ListMessageResponseBodyMessagesContentCardCallback getCardCallback() {
return this.cardCallback;
}
public ListMessageResponseBodyMessagesContent setDingCard(ListMessageResponseBodyMessagesContentDingCard dingCard) {
this.dingCard = dingCard;
return this;
}
public ListMessageResponseBodyMessagesContentDingCard getDingCard() {
return this.dingCard;
}
public ListMessageResponseBodyMessagesContent setDingNormalCard(ListMessageResponseBodyMessagesContentDingNormalCard dingNormalCard) {
this.dingNormalCard = dingNormalCard;
return this;
}
public ListMessageResponseBodyMessagesContentDingNormalCard getDingNormalCard() {
return this.dingNormalCard;
}
public ListMessageResponseBodyMessagesContent setMarkdown(ListMessageResponseBodyMessagesContentMarkdown markdown) {
this.markdown = markdown;
return this;
}
public ListMessageResponseBodyMessagesContentMarkdown getMarkdown() {
return this.markdown;
}
public ListMessageResponseBodyMessagesContent setStructView(ListMessageResponseBodyMessagesContentStructView structView) {
this.structView = structView;
return this;
}
public ListMessageResponseBodyMessagesContentStructView getStructView() {
return this.structView;
}
public ListMessageResponseBodyMessagesContent setText(ListMessageResponseBodyMessagesContentText text) {
this.text = text;
return this;
}
public ListMessageResponseBodyMessagesContentText getText() {
return this.text;
}
public ListMessageResponseBodyMessagesContent setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListMessageResponseBodyMessages extends TeaModel {
@NameInMap("content")
public ListMessageResponseBodyMessagesContent 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>messageId1</p>
*/
@NameInMap("id")
public String id;
/**
* <strong>example:</strong>
* <p>user</p>
*/
@NameInMap("role")
public String role;
/**
* <strong>example:</strong>
* <p>runId1</p>
*/
@NameInMap("runId")
public String runId;
/**
* <strong>example:</strong>
* <p>threadId1</p>
*/
@NameInMap("threadId")
public String threadId;
public static ListMessageResponseBodyMessages build(java.util.Map<String, ?> map) throws Exception {
ListMessageResponseBodyMessages self = new ListMessageResponseBodyMessages();
return TeaModel.build(map, self);
}
public ListMessageResponseBodyMessages setContent(ListMessageResponseBodyMessagesContent content) {
this.content = content;
return this;
}
public ListMessageResponseBodyMessagesContent getContent() {
return this.content;
}
public ListMessageResponseBodyMessages setContentDesc(String contentDesc) {
this.contentDesc = contentDesc;
return this;
}
public String getContentDesc() {
return this.contentDesc;
}
public ListMessageResponseBodyMessages setCreateAt(Long createAt) {
this.createAt = createAt;
return this;
}
public Long getCreateAt() {
return this.createAt;
}
public ListMessageResponseBodyMessages setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListMessageResponseBodyMessages setRole(String role) {
this.role = role;
return this;
}
public String getRole() {
return this.role;
}
public ListMessageResponseBodyMessages setRunId(String runId) {
this.runId = runId;
return this;
}
public String getRunId() {
return this.runId;
}
public ListMessageResponseBodyMessages setThreadId(String threadId) {
this.threadId = threadId;
return this;
}
public String getThreadId() {
return this.threadId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListMultiDimTableRecordsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListMultiDimTableRecordsHeadersAccountContext accountContext;
public static ListMultiDimTableRecordsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsHeaders self = new ListMultiDimTableRecordsHeaders();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListMultiDimTableRecordsHeaders setAccountContext(ListMultiDimTableRecordsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListMultiDimTableRecordsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListMultiDimTableRecordsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListMultiDimTableRecordsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsHeadersAccountContext self = new ListMultiDimTableRecordsHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsHeadersAccountContext 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/ListMultiDimTableRecordsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>101114</p>
*/
@NameInMap("BaseId")
public String baseId;
@NameInMap("Filter")
public ListMultiDimTableRecordsRequestFilter filter;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>AAAAAUUg5QSTWwHyeElt8z5z4Qo=</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public ListMultiDimTableRecordsRequestTenantContext tenantContext;
public static ListMultiDimTableRecordsRequest build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsRequest self = new ListMultiDimTableRecordsRequest();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public ListMultiDimTableRecordsRequest setFilter(ListMultiDimTableRecordsRequestFilter filter) {
this.filter = filter;
return this;
}
public ListMultiDimTableRecordsRequestFilter getFilter() {
return this.filter;
}
public ListMultiDimTableRecordsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListMultiDimTableRecordsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListMultiDimTableRecordsRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public ListMultiDimTableRecordsRequest setTenantContext(ListMultiDimTableRecordsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListMultiDimTableRecordsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListMultiDimTableRecordsRequestFilterConditions extends TeaModel {
/**
* <strong>example:</strong>
* <p>Sandbox</p>
*/
@NameInMap("Field")
public String field;
/**
* <strong>example:</strong>
* <p>equal</p>
*/
@NameInMap("Operator")
public String operator;
@NameInMap("Value")
public java.util.List<?> value;
public static ListMultiDimTableRecordsRequestFilterConditions build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsRequestFilterConditions self = new ListMultiDimTableRecordsRequestFilterConditions();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsRequestFilterConditions setField(String field) {
this.field = field;
return this;
}
public String getField() {
return this.field;
}
public ListMultiDimTableRecordsRequestFilterConditions setOperator(String operator) {
this.operator = operator;
return this;
}
public String getOperator() {
return this.operator;
}
public ListMultiDimTableRecordsRequestFilterConditions setValue(java.util.List<?> value) {
this.value = value;
return this;
}
public java.util.List<?> getValue() {
return this.value;
}
}
public static class ListMultiDimTableRecordsRequestFilter extends TeaModel {
/**
* <strong>example:</strong>
* <p>and</p>
*/
@NameInMap("Combination")
public String combination;
@NameInMap("Conditions")
public java.util.List<ListMultiDimTableRecordsRequestFilterConditions> conditions;
public static ListMultiDimTableRecordsRequestFilter build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsRequestFilter self = new ListMultiDimTableRecordsRequestFilter();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsRequestFilter setCombination(String combination) {
this.combination = combination;
return this;
}
public String getCombination() {
return this.combination;
}
public ListMultiDimTableRecordsRequestFilter setConditions(java.util.List<ListMultiDimTableRecordsRequestFilterConditions> conditions) {
this.conditions = conditions;
return this;
}
public java.util.List<ListMultiDimTableRecordsRequestFilterConditions> getConditions() {
return this.conditions;
}
}
public static class ListMultiDimTableRecordsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListMultiDimTableRecordsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsRequestTenantContext self = new ListMultiDimTableRecordsRequestTenantContext();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsRequestTenantContext 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/ListMultiDimTableRecordsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListMultiDimTableRecordsResponseBody body;
public static ListMultiDimTableRecordsResponse build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsResponse self = new ListMultiDimTableRecordsResponse();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListMultiDimTableRecordsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListMultiDimTableRecordsResponse setBody(ListMultiDimTableRecordsResponseBody body) {
this.body = body;
return this;
}
public ListMultiDimTableRecordsResponseBody 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/ListMultiDimTableRecordsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* <strong>example:</strong>
* <p>1234567890</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>[]</p>
*/
@NameInMap("records")
public java.util.List<ListMultiDimTableRecordsResponseBodyRecords> records;
/**
* <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 ListMultiDimTableRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsResponseBody self = new ListMultiDimTableRecordsResponseBody();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public ListMultiDimTableRecordsResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListMultiDimTableRecordsResponseBody setRecords(java.util.List<ListMultiDimTableRecordsResponseBodyRecords> records) {
this.records = records;
return this;
}
public java.util.List<ListMultiDimTableRecordsResponseBodyRecords> getRecords() {
return this.records;
}
public ListMultiDimTableRecordsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListMultiDimTableRecordsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListMultiDimTableRecordsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListMultiDimTableRecordsResponseBodyRecordsCreatedBy extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UserId")
public String userId;
public static ListMultiDimTableRecordsResponseBodyRecordsCreatedBy build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsResponseBodyRecordsCreatedBy self = new ListMultiDimTableRecordsResponseBodyRecordsCreatedBy();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsResponseBodyRecordsCreatedBy setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UserId")
public String userId;
public static ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy self = new ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}
public static class ListMultiDimTableRecordsResponseBodyRecords extends TeaModel {
@NameInMap("CreatedBy")
public ListMultiDimTableRecordsResponseBodyRecordsCreatedBy createdBy;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("CreatedTime")
public Long createdTime;
/**
* <strong>example:</strong>
* <p>title,shortTitle</p>
*/
@NameInMap("Fields")
public java.util.Map<String, ?> fields;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("Id")
public String id;
@NameInMap("LastModifiedBy")
public ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy lastModifiedBy;
/**
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("LastModifiedTime")
public Long lastModifiedTime;
public static ListMultiDimTableRecordsResponseBodyRecords build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsResponseBodyRecords self = new ListMultiDimTableRecordsResponseBodyRecords();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsResponseBodyRecords setCreatedBy(ListMultiDimTableRecordsResponseBodyRecordsCreatedBy createdBy) {
this.createdBy = createdBy;
return this;
}
public ListMultiDimTableRecordsResponseBodyRecordsCreatedBy getCreatedBy() {
return this.createdBy;
}
public ListMultiDimTableRecordsResponseBodyRecords setCreatedTime(Long createdTime) {
this.createdTime = createdTime;
return this;
}
public Long getCreatedTime() {
return this.createdTime;
}
public ListMultiDimTableRecordsResponseBodyRecords setFields(java.util.Map<String, ?> fields) {
this.fields = fields;
return this;
}
public java.util.Map<String, ?> getFields() {
return this.fields;
}
public ListMultiDimTableRecordsResponseBodyRecords setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListMultiDimTableRecordsResponseBodyRecords setLastModifiedBy(ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy lastModifiedBy) {
this.lastModifiedBy = lastModifiedBy;
return this;
}
public ListMultiDimTableRecordsResponseBodyRecordsLastModifiedBy getLastModifiedBy() {
return this.lastModifiedBy;
}
public ListMultiDimTableRecordsResponseBodyRecords setLastModifiedTime(Long lastModifiedTime) {
this.lastModifiedTime = lastModifiedTime;
return this;
}
public Long getLastModifiedTime() {
return this.lastModifiedTime;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListMultiDimTableRecordsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListMultiDimTableRecordsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsShrinkHeaders self = new ListMultiDimTableRecordsShrinkHeaders();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListMultiDimTableRecordsShrinkHeaders 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/ListMultiDimTableRecordsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListMultiDimTableRecordsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>101114</p>
*/
@NameInMap("BaseId")
public String baseId;
@NameInMap("Filter")
public String filterShrink;
/**
* <strong>example:</strong>
* <p>100</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>AAAAAUUg5QSTWwHyeElt8z5z4Qo=</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxx</p>
*/
@NameInMap("SheetIdOrName")
public String sheetIdOrName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ListMultiDimTableRecordsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListMultiDimTableRecordsShrinkRequest self = new ListMultiDimTableRecordsShrinkRequest();
return TeaModel.build(map, self);
}
public ListMultiDimTableRecordsShrinkRequest setBaseId(String baseId) {
this.baseId = baseId;
return this;
}
public String getBaseId() {
return this.baseId;
}
public ListMultiDimTableRecordsShrinkRequest setFilterShrink(String filterShrink) {
this.filterShrink = filterShrink;
return this;
}
public String getFilterShrink() {
return this.filterShrink;
}
public ListMultiDimTableRecordsShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListMultiDimTableRecordsShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListMultiDimTableRecordsShrinkRequest setSheetIdOrName(String sheetIdOrName) {
this.sheetIdOrName = sheetIdOrName;
return this;
}
public String getSheetIdOrName() {
return this.sheetIdOrName;
}
public ListMultiDimTableRecordsShrinkRequest 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/ListNavigationByFormTypeHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNavigationByFormTypeHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListNavigationByFormTypeHeadersAccountContext accountContext;
public static ListNavigationByFormTypeHeaders build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeHeaders self = new ListNavigationByFormTypeHeaders();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListNavigationByFormTypeHeaders setAccountContext(ListNavigationByFormTypeHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListNavigationByFormTypeHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListNavigationByFormTypeHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListNavigationByFormTypeHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeHeadersAccountContext self = new ListNavigationByFormTypeHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeHeadersAccountContext 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/ListNavigationByFormTypeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNavigationByFormTypeRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>APP_PBKTxxx</p>
*/
@NameInMap("AppType")
public String appType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>receipt</p>
*/
@NameInMap("FormType")
public String formType;
/**
* <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 ListNavigationByFormTypeRequest build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeRequest self = new ListNavigationByFormTypeRequest();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListNavigationByFormTypeRequest setFormType(String formType) {
this.formType = formType;
return this;
}
public String getFormType() {
return this.formType;
}
public ListNavigationByFormTypeRequest setLanguage(String language) {
this.language = language;
return this;
}
public String getLanguage() {
return this.language;
}
public ListNavigationByFormTypeRequest 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/ListNavigationByFormTypeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNavigationByFormTypeResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListNavigationByFormTypeResponseBody body;
public static ListNavigationByFormTypeResponse build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeResponse self = new ListNavigationByFormTypeResponse();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListNavigationByFormTypeResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListNavigationByFormTypeResponse setBody(ListNavigationByFormTypeResponseBody body) {
this.body = body;
return this;
}
public ListNavigationByFormTypeResponseBody 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/ListNavigationByFormTypeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNavigationByFormTypeResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("result")
public java.util.List<ListNavigationByFormTypeResponseBodyResult> 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 ListNavigationByFormTypeResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeResponseBody self = new ListNavigationByFormTypeResponseBody();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListNavigationByFormTypeResponseBody setResult(java.util.List<ListNavigationByFormTypeResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListNavigationByFormTypeResponseBodyResult> getResult() {
return this.result;
}
public ListNavigationByFormTypeResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListNavigationByFormTypeResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListNavigationByFormTypeResponseBodyResultTitle 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>未知</p>
*/
@NameInMap("Type")
public String type;
public static ListNavigationByFormTypeResponseBodyResultTitle build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeResponseBodyResultTitle self = new ListNavigationByFormTypeResponseBodyResultTitle();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeResponseBodyResultTitle setNameInChinese(String nameInChinese) {
this.nameInChinese = nameInChinese;
return this;
}
public String getNameInChinese() {
return this.nameInChinese;
}
public ListNavigationByFormTypeResponseBodyResultTitle setNameInEnglish(String nameInEnglish) {
this.nameInEnglish = nameInEnglish;
return this;
}
public String getNameInEnglish() {
return this.nameInEnglish;
}
public ListNavigationByFormTypeResponseBodyResultTitle setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListNavigationByFormTypeResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>FORM-EF6Yxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>TPROC--X1Gxxx</p>
*/
@NameInMap("ProcessCode")
public String processCode;
@NameInMap("Title")
public ListNavigationByFormTypeResponseBodyResultTitle title;
public static ListNavigationByFormTypeResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeResponseBodyResult self = new ListNavigationByFormTypeResponseBodyResult();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeResponseBodyResult setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public ListNavigationByFormTypeResponseBodyResult setProcessCode(String processCode) {
this.processCode = processCode;
return this;
}
public String getProcessCode() {
return this.processCode;
}
public ListNavigationByFormTypeResponseBodyResult setTitle(ListNavigationByFormTypeResponseBodyResultTitle title) {
this.title = title;
return this;
}
public ListNavigationByFormTypeResponseBodyResultTitle 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/ListNavigationByFormTypeShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNavigationByFormTypeShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListNavigationByFormTypeShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListNavigationByFormTypeShrinkHeaders self = new ListNavigationByFormTypeShrinkHeaders();
return TeaModel.build(map, self);
}
public ListNavigationByFormTypeShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListNavigationByFormTypeShrinkHeaders 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/ListNodesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListNodesHeadersAccountContext accountContext;
public static ListNodesHeaders build(java.util.Map<String, ?> map) throws Exception {
ListNodesHeaders self = new ListNodesHeaders();
return TeaModel.build(map, self);
}
public ListNodesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListNodesHeaders setAccountContext(ListNodesHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListNodesHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListNodesHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListNodesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListNodesHeadersAccountContext self = new ListNodesHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListNodesHeadersAccountContext 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/ListNodesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>50</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>next_token</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("ParentNodeId")
public String parentNodeId;
@NameInMap("TenantContext")
public ListNodesRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
public static ListNodesRequest build(java.util.Map<String, ?> map) throws Exception {
ListNodesRequest self = new ListNodesRequest();
return TeaModel.build(map, self);
}
public ListNodesRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListNodesRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListNodesRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public ListNodesRequest setTenantContext(ListNodesRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListNodesRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public ListNodesRequest setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
public static class ListNodesRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListNodesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListNodesRequestTenantContext self = new ListNodesRequestTenantContext();
return TeaModel.build(map, self);
}
public ListNodesRequestTenantContext 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/ListNodesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListNodesResponseBody body;
public static ListNodesResponse build(java.util.Map<String, ?> map) throws Exception {
ListNodesResponse self = new ListNodesResponse();
return TeaModel.build(map, self);
}
public ListNodesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListNodesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListNodesResponse setBody(ListNodesResponseBody body) {
this.body = body;
return this;
}
public ListNodesResponseBody 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/ListNodesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>next_token</p>
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("nodes")
public java.util.List<ListNodesResponseBodyNodes> nodes;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
public static ListNodesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListNodesResponseBody self = new ListNodesResponseBody();
return TeaModel.build(map, self);
}
public ListNodesResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListNodesResponseBody setNodes(java.util.List<ListNodesResponseBodyNodes> nodes) {
this.nodes = nodes;
return this;
}
public java.util.List<ListNodesResponseBodyNodes> getNodes() {
return this.nodes;
}
public ListNodesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public static class ListNodesResponseBodyNodesStatisticalInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("WordCount")
public Long wordCount;
public static ListNodesResponseBodyNodesStatisticalInfo build(java.util.Map<String, ?> map) throws Exception {
ListNodesResponseBodyNodesStatisticalInfo self = new ListNodesResponseBodyNodesStatisticalInfo();
return TeaModel.build(map, self);
}
public ListNodesResponseBodyNodesStatisticalInfo setWordCount(Long wordCount) {
this.wordCount = wordCount;
return this;
}
public Long getWordCount() {
return this.wordCount;
}
}
public static class ListNodesResponseBodyNodes extends TeaModel {
/**
* <strong>example:</strong>
* <p>ALIDOC</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>adoc</p>
*/
@NameInMap("Extension")
public String extension;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("HasChildren")
public Boolean hasChildren;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>node_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("NodeId")
public String nodeId;
/**
* <strong>example:</strong>
* <p>READER</p>
*/
@NameInMap("PermissionRole")
public String permissionRole;
/**
* <strong>example:</strong>
* <p>512</p>
*/
@NameInMap("Size")
public Long size;
@NameInMap("StatisticalInfo")
public ListNodesResponseBodyNodesStatisticalInfo statisticalInfo;
/**
* <strong>example:</strong>
* <p>FILE</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>node_url</p>
*/
@NameInMap("Url")
public String url;
/**
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static ListNodesResponseBodyNodes build(java.util.Map<String, ?> map) throws Exception {
ListNodesResponseBodyNodes self = new ListNodesResponseBodyNodes();
return TeaModel.build(map, self);
}
public ListNodesResponseBodyNodes setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListNodesResponseBodyNodes setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListNodesResponseBodyNodes setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public ListNodesResponseBodyNodes setExtension(String extension) {
this.extension = extension;
return this;
}
public String getExtension() {
return this.extension;
}
public ListNodesResponseBodyNodes setHasChildren(Boolean hasChildren) {
this.hasChildren = hasChildren;
return this;
}
public Boolean getHasChildren() {
return this.hasChildren;
}
public ListNodesResponseBodyNodes setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public ListNodesResponseBodyNodes setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public ListNodesResponseBodyNodes setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListNodesResponseBodyNodes setNodeId(String nodeId) {
this.nodeId = nodeId;
return this;
}
public String getNodeId() {
return this.nodeId;
}
public ListNodesResponseBodyNodes setPermissionRole(String permissionRole) {
this.permissionRole = permissionRole;
return this;
}
public String getPermissionRole() {
return this.permissionRole;
}
public ListNodesResponseBodyNodes setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public ListNodesResponseBodyNodes setStatisticalInfo(ListNodesResponseBodyNodesStatisticalInfo statisticalInfo) {
this.statisticalInfo = statisticalInfo;
return this;
}
public ListNodesResponseBodyNodesStatisticalInfo getStatisticalInfo() {
return this.statisticalInfo;
}
public ListNodesResponseBodyNodes setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListNodesResponseBodyNodes setUrl(String url) {
this.url = url;
return this;
}
public String getUrl() {
return this.url;
}
public ListNodesResponseBodyNodes setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListNodesShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListNodesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListNodesShrinkHeaders self = new ListNodesShrinkHeaders();
return TeaModel.build(map, self);
}
public ListNodesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListNodesShrinkHeaders 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/ListNodesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListNodesShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>50</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>next_token</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>MNDoBb60VLBPraakI1Ywxyyn8lemrZQ3</p>
*/
@NameInMap("ParentNodeId")
public String parentNodeId;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("WithPermissionRole")
public Boolean withPermissionRole;
public static ListNodesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListNodesShrinkRequest self = new ListNodesShrinkRequest();
return TeaModel.build(map, self);
}
public ListNodesShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListNodesShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListNodesShrinkRequest setParentNodeId(String parentNodeId) {
this.parentNodeId = parentNodeId;
return this;
}
public String getParentNodeId() {
return this.parentNodeId;
}
public ListNodesShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public ListNodesShrinkRequest setWithPermissionRole(Boolean withPermissionRole) {
this.withPermissionRole = withPermissionRole;
return this;
}
public Boolean getWithPermissionRole() {
return this.withPermissionRole;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListPermissionsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListPermissionsHeadersAccountContext accountContext;
public static ListPermissionsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsHeaders self = new ListPermissionsHeaders();
return TeaModel.build(map, self);
}
public ListPermissionsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListPermissionsHeaders setAccountContext(ListPermissionsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListPermissionsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListPermissionsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListPermissionsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsHeadersAccountContext self = new ListPermissionsHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListPermissionsHeadersAccountContext 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/ListPermissionsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>KGZLxjv9VGkoG9YwHE5wx7k2V6EDybno</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
@NameInMap("Option")
public ListPermissionsRequestOption option;
@NameInMap("TenantContext")
public ListPermissionsRequestTenantContext tenantContext;
public static ListPermissionsRequest build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsRequest self = new ListPermissionsRequest();
return TeaModel.build(map, self);
}
public ListPermissionsRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public ListPermissionsRequest setOption(ListPermissionsRequestOption option) {
this.option = option;
return this;
}
public ListPermissionsRequestOption getOption() {
return this.option;
}
public ListPermissionsRequest setTenantContext(ListPermissionsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListPermissionsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListPermissionsRequestOption extends TeaModel {
@NameInMap("FilterRoleIds")
public java.util.List<String> filterRoleIds;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>2</p>
*/
@NameInMap("NextToken")
public String nextToken;
public static ListPermissionsRequestOption build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsRequestOption self = new ListPermissionsRequestOption();
return TeaModel.build(map, self);
}
public ListPermissionsRequestOption setFilterRoleIds(java.util.List<String> filterRoleIds) {
this.filterRoleIds = filterRoleIds;
return this;
}
public java.util.List<String> getFilterRoleIds() {
return this.filterRoleIds;
}
public ListPermissionsRequestOption setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListPermissionsRequestOption setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
}
public static class ListPermissionsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListPermissionsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsRequestTenantContext self = new ListPermissionsRequestTenantContext();
return TeaModel.build(map, self);
}
public ListPermissionsRequestTenantContext 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/ListPermissionsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListPermissionsResponseBody body;
public static ListPermissionsResponse build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsResponse self = new ListPermissionsResponse();
return TeaModel.build(map, self);
}
public ListPermissionsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListPermissionsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListPermissionsResponse setBody(ListPermissionsResponseBody body) {
this.body = body;
return this;
}
public ListPermissionsResponseBody 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/ListPermissionsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>59886</p>
*/
@NameInMap("duration")
public Long duration;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("nextToken")
public String nextToken;
@NameInMap("permissions")
public java.util.List<ListPermissionsResponseBodyPermissions> permissions;
/**
* <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 ListPermissionsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsResponseBody self = new ListPermissionsResponseBody();
return TeaModel.build(map, self);
}
public ListPermissionsResponseBody setDuration(Long duration) {
this.duration = duration;
return this;
}
public Long getDuration() {
return this.duration;
}
public ListPermissionsResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListPermissionsResponseBody setPermissions(java.util.List<ListPermissionsResponseBodyPermissions> permissions) {
this.permissions = permissions;
return this;
}
public java.util.List<ListPermissionsResponseBodyPermissions> getPermissions() {
return this.permissions;
}
public ListPermissionsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListPermissionsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListPermissionsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListPermissionsResponseBodyPermissionsMember extends TeaModel {
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>ORG</p>
*/
@NameInMap("Type")
public String type;
public static ListPermissionsResponseBodyPermissionsMember build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsResponseBodyPermissionsMember self = new ListPermissionsResponseBodyPermissionsMember();
return TeaModel.build(map, self);
}
public ListPermissionsResponseBodyPermissionsMember setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public ListPermissionsResponseBodyPermissionsMember setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListPermissionsResponseBodyPermissionsMember setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListPermissionsResponseBodyPermissionsRole extends TeaModel {
/**
* <strong>example:</strong>
* <p>OWNER</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>拥有者</p>
*/
@NameInMap("Name")
public String name;
public static ListPermissionsResponseBodyPermissionsRole build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsResponseBodyPermissionsRole self = new ListPermissionsResponseBodyPermissionsRole();
return TeaModel.build(map, self);
}
public ListPermissionsResponseBodyPermissionsRole setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListPermissionsResponseBodyPermissionsRole setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
public static class ListPermissionsResponseBodyPermissions extends TeaModel {
/**
* <strong>example:</strong>
* <p>123456</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
@NameInMap("Member")
public ListPermissionsResponseBodyPermissionsMember member;
@NameInMap("Role")
public ListPermissionsResponseBodyPermissionsRole role;
public static ListPermissionsResponseBodyPermissions build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsResponseBodyPermissions self = new ListPermissionsResponseBodyPermissions();
return TeaModel.build(map, self);
}
public ListPermissionsResponseBodyPermissions setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public ListPermissionsResponseBodyPermissions setMember(ListPermissionsResponseBodyPermissionsMember member) {
this.member = member;
return this;
}
public ListPermissionsResponseBodyPermissionsMember getMember() {
return this.member;
}
public ListPermissionsResponseBodyPermissions setRole(ListPermissionsResponseBodyPermissionsRole role) {
this.role = role;
return this;
}
public ListPermissionsResponseBodyPermissionsRole 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/ListPermissionsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListPermissionsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsShrinkHeaders self = new ListPermissionsShrinkHeaders();
return TeaModel.build(map, self);
}
public ListPermissionsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListPermissionsShrinkHeaders 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/ListPermissionsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListPermissionsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>KGZLxjv9VGkoG9YwHE5wx7k2V6EDybno</p>
*/
@NameInMap("DentryUuid")
public String dentryUuid;
@NameInMap("Option")
public String optionShrink;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ListPermissionsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListPermissionsShrinkRequest self = new ListPermissionsShrinkRequest();
return TeaModel.build(map, self);
}
public ListPermissionsShrinkRequest setDentryUuid(String dentryUuid) {
this.dentryUuid = dentryUuid;
return this;
}
public String getDentryUuid() {
return this.dentryUuid;
}
public ListPermissionsShrinkRequest setOptionShrink(String optionShrink) {
this.optionShrink = optionShrink;
return this;
}
public String getOptionShrink() {
return this.optionShrink;
}
public ListPermissionsShrinkRequest 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/ListReportHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListReportHeadersAccountContext accountContext;
public static ListReportHeaders build(java.util.Map<String, ?> map) throws Exception {
ListReportHeaders self = new ListReportHeaders();
return TeaModel.build(map, self);
}
public ListReportHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListReportHeaders setAccountContext(ListReportHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListReportHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListReportHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListReportHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListReportHeadersAccountContext self = new ListReportHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListReportHeadersAccountContext 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/ListReportRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Cursor")
public Long cursor;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("EndTime")
public Long endTime;
/**
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("ModifiedEndTime")
public Long modifiedEndTime;
/**
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("ModifiedStartTime")
public Long modifiedStartTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Size")
public Long size;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("StartTime")
public Long startTime;
/**
* <strong>example:</strong>
* <p>我管理的模版</p>
*/
@NameInMap("TemplateName")
public String templateName;
@NameInMap("TenantContext")
public ListReportRequestTenantContext tenantContext;
public static ListReportRequest build(java.util.Map<String, ?> map) throws Exception {
ListReportRequest self = new ListReportRequest();
return TeaModel.build(map, self);
}
public ListReportRequest setCursor(Long cursor) {
this.cursor = cursor;
return this;
}
public Long getCursor() {
return this.cursor;
}
public ListReportRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public ListReportRequest setModifiedEndTime(Long modifiedEndTime) {
this.modifiedEndTime = modifiedEndTime;
return this;
}
public Long getModifiedEndTime() {
return this.modifiedEndTime;
}
public ListReportRequest setModifiedStartTime(Long modifiedStartTime) {
this.modifiedStartTime = modifiedStartTime;
return this;
}
public Long getModifiedStartTime() {
return this.modifiedStartTime;
}
public ListReportRequest setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public ListReportRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public ListReportRequest setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
public ListReportRequest setTenantContext(ListReportRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListReportRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListReportRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListReportRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListReportRequestTenantContext self = new ListReportRequestTenantContext();
return TeaModel.build(map, self);
}
public ListReportRequestTenantContext 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/ListReportResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListReportResponseBody body;
public static ListReportResponse build(java.util.Map<String, ?> map) throws Exception {
ListReportResponse self = new ListReportResponse();
return TeaModel.build(map, self);
}
public ListReportResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListReportResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListReportResponse setBody(ListReportResponseBody body) {
this.body = body;
return this;
}
public ListReportResponseBody 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/ListReportResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportResponseBody extends TeaModel {
@NameInMap("dataList")
public java.util.List<ListReportResponseBodyDataList> dataList;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* <strong>example:</strong>
* <p>12312131231</p>
*/
@NameInMap("nextCursor")
public Long nextCursor;
/**
* <p>requestId</p>
*
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("size")
public Long size;
public static ListReportResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListReportResponseBody self = new ListReportResponseBody();
return TeaModel.build(map, self);
}
public ListReportResponseBody setDataList(java.util.List<ListReportResponseBodyDataList> dataList) {
this.dataList = dataList;
return this;
}
public java.util.List<ListReportResponseBodyDataList> getDataList() {
return this.dataList;
}
public ListReportResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public ListReportResponseBody setNextCursor(Long nextCursor) {
this.nextCursor = nextCursor;
return this;
}
public Long getNextCursor() {
return this.nextCursor;
}
public ListReportResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListReportResponseBody setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public static class ListReportResponseBodyDataListContents extends TeaModel {
/**
* <strong>example:</strong>
* <p>env</p>
*/
@NameInMap("Key")
public String key;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Sort")
public String sort;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>ce9ab5d4a80a9401f97c7077e6a9634bd</p>
*/
@NameInMap("Value")
public String value;
public static ListReportResponseBodyDataListContents build(java.util.Map<String, ?> map) throws Exception {
ListReportResponseBodyDataListContents self = new ListReportResponseBodyDataListContents();
return TeaModel.build(map, self);
}
public ListReportResponseBodyDataListContents setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public ListReportResponseBodyDataListContents setSort(String sort) {
this.sort = sort;
return this;
}
public String getSort() {
return this.sort;
}
public ListReportResponseBodyDataListContents setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListReportResponseBodyDataListContents setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class ListReportResponseBodyDataList extends TeaModel {
@NameInMap("Contents")
public java.util.List<ListReportResponseBodyDataListContents> contents;
/**
* <strong>example:</strong>
* <p>1678416166000</p>
*/
@NameInMap("CreateTime")
public Long createTime;
/**
* <strong>example:</strong>
* <p>1127123</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>admin</p>
*/
@NameInMap("CreatorName")
public String creatorName;
@NameInMap("DeptName")
public String deptName;
@NameInMap("Images")
public java.util.List<String> images;
/**
* <strong>example:</strong>
* <p>31.1264</p>
*/
@NameInMap("Latitude")
public String latitude;
/**
* <strong>example:</strong>
* <p>108.938036</p>
*/
@NameInMap("Longitude")
public String longitude;
/**
* <strong>example:</strong>
* <p>1653543540000</p>
*/
@NameInMap("ModifiedTime")
public Long modifiedTime;
@NameInMap("Remark")
public String remark;
/**
* <strong>example:</strong>
* <p>d64994d09916c76276dd9bfa23637644</p>
*/
@NameInMap("ReportId")
public String reportId;
@NameInMap("TemplateName")
public String templateName;
public static ListReportResponseBodyDataList build(java.util.Map<String, ?> map) throws Exception {
ListReportResponseBodyDataList self = new ListReportResponseBodyDataList();
return TeaModel.build(map, self);
}
public ListReportResponseBodyDataList setContents(java.util.List<ListReportResponseBodyDataListContents> contents) {
this.contents = contents;
return this;
}
public java.util.List<ListReportResponseBodyDataListContents> getContents() {
return this.contents;
}
public ListReportResponseBodyDataList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public ListReportResponseBodyDataList setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public ListReportResponseBodyDataList setCreatorName(String creatorName) {
this.creatorName = creatorName;
return this;
}
public String getCreatorName() {
return this.creatorName;
}
public ListReportResponseBodyDataList setDeptName(String deptName) {
this.deptName = deptName;
return this;
}
public String getDeptName() {
return this.deptName;
}
public ListReportResponseBodyDataList setImages(java.util.List<String> images) {
this.images = images;
return this;
}
public java.util.List<String> getImages() {
return this.images;
}
public ListReportResponseBodyDataList setLatitude(String latitude) {
this.latitude = latitude;
return this;
}
public String getLatitude() {
return this.latitude;
}
public ListReportResponseBodyDataList setLongitude(String longitude) {
this.longitude = longitude;
return this;
}
public String getLongitude() {
return this.longitude;
}
public ListReportResponseBodyDataList setModifiedTime(Long modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public Long getModifiedTime() {
return this.modifiedTime;
}
public ListReportResponseBodyDataList setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ListReportResponseBodyDataList setReportId(String reportId) {
this.reportId = reportId;
return this;
}
public String getReportId() {
return this.reportId;
}
public ListReportResponseBodyDataList setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListReportShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListReportShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListReportShrinkHeaders self = new ListReportShrinkHeaders();
return TeaModel.build(map, self);
}
public ListReportShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListReportShrinkHeaders 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/ListReportShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListReportShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Cursor")
public Long cursor;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("EndTime")
public Long endTime;
/**
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("ModifiedEndTime")
public Long modifiedEndTime;
/**
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("ModifiedStartTime")
public Long modifiedStartTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Size")
public Long size;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1507564800000</p>
*/
@NameInMap("StartTime")
public Long startTime;
/**
* <strong>example:</strong>
* <p>我管理的模版</p>
*/
@NameInMap("TemplateName")
public String templateName;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ListReportShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListReportShrinkRequest self = new ListReportShrinkRequest();
return TeaModel.build(map, self);
}
public ListReportShrinkRequest setCursor(Long cursor) {
this.cursor = cursor;
return this;
}
public Long getCursor() {
return this.cursor;
}
public ListReportShrinkRequest setEndTime(Long endTime) {
this.endTime = endTime;
return this;
}
public Long getEndTime() {
return this.endTime;
}
public ListReportShrinkRequest setModifiedEndTime(Long modifiedEndTime) {
this.modifiedEndTime = modifiedEndTime;
return this;
}
public Long getModifiedEndTime() {
return this.modifiedEndTime;
}
public ListReportShrinkRequest setModifiedStartTime(Long modifiedStartTime) {
this.modifiedStartTime = modifiedStartTime;
return this;
}
public Long getModifiedStartTime() {
return this.modifiedStartTime;
}
public ListReportShrinkRequest setSize(Long size) {
this.size = size;
return this;
}
public Long getSize() {
return this.size;
}
public ListReportShrinkRequest setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public ListReportShrinkRequest setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
public ListReportShrinkRequest 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/ListSkillHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListSkillHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListSkillHeadersAccountContext accountContext;
public static ListSkillHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSkillHeaders self = new ListSkillHeaders();
return TeaModel.build(map, self);
}
public ListSkillHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSkillHeaders setAccountContext(ListSkillHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListSkillHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListSkillHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListSkillHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListSkillHeadersAccountContext self = new ListSkillHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListSkillHeadersAccountContext 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/ListSkillRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListSkillRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>qweq-1231-jbarr-9940-asdf</p>
*/
@NameInMap("groupId")
public String groupId;
public static ListSkillRequest build(java.util.Map<String, ?> map) throws Exception {
ListSkillRequest self = new ListSkillRequest();
return TeaModel.build(map, self);
}
public ListSkillRequest setGroupId(String groupId) {
this.groupId = groupId;
return this;
}
public String getGroupId() {
return this.groupId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListSkillResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListSkillResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSkillResponseBody body;
public static ListSkillResponse build(java.util.Map<String, ?> map) throws Exception {
ListSkillResponse self = new ListSkillResponse();
return TeaModel.build(map, self);
}
public ListSkillResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSkillResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSkillResponse setBody(ListSkillResponseBody body) {
this.body = body;
return this;
}
public ListSkillResponseBody 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/ListSkillResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListSkillResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("Data")
public Object data;
/**
* <strong>example:</strong>
* <p>2715B4D3-A3FB-5FC7-AFA0-4471687B1EC6</p>
*/
@NameInMap("RequestId")
public String requestId;
public static ListSkillResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSkillResponseBody self = new ListSkillResponseBody();
return TeaModel.build(map, self);
}
public ListSkillResponseBody setData(Object data) {
this.data = data;
return this;
}
public Object getData() {
return this.data;
}
public ListSkillResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListSkillShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListSkillShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListSkillShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSkillShrinkHeaders self = new ListSkillShrinkHeaders();
return TeaModel.build(map, self);
}
public ListSkillShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSkillShrinkHeaders 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/ListTableDataByFormInstanceIdTableIdHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTableDataByFormInstanceIdTableIdHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListTableDataByFormInstanceIdTableIdHeadersAccountContext accountContext;
public static ListTableDataByFormInstanceIdTableIdHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdHeaders self = new ListTableDataByFormInstanceIdTableIdHeaders();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTableDataByFormInstanceIdTableIdHeaders setAccountContext(ListTableDataByFormInstanceIdTableIdHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListTableDataByFormInstanceIdTableIdHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListTableDataByFormInstanceIdTableIdHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListTableDataByFormInstanceIdTableIdHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdHeadersAccountContext self = new ListTableDataByFormInstanceIdTableIdHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdHeadersAccountContext 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/ListTableDataByFormInstanceIdTableIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTableDataByFormInstanceIdTableIdRequest 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_PBKT0xxx</p>
*/
@NameInMap("FormInstanceId")
public String formInstanceId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FORM-xxxxx</p>
*/
@NameInMap("FormUuid")
public String formUuid;
/**
* <strong>example:</strong>
* <p>20</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;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1111</p>
*/
@NameInMap("TableFieldId")
public String tableFieldId;
public static ListTableDataByFormInstanceIdTableIdRequest build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdRequest self = new ListTableDataByFormInstanceIdTableIdRequest();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdRequest setAppType(String appType) {
this.appType = appType;
return this;
}
public String getAppType() {
return this.appType;
}
public ListTableDataByFormInstanceIdTableIdRequest setFormInstanceId(String formInstanceId) {
this.formInstanceId = formInstanceId;
return this;
}
public String getFormInstanceId() {
return this.formInstanceId;
}
public ListTableDataByFormInstanceIdTableIdRequest setFormUuid(String formUuid) {
this.formUuid = formUuid;
return this;
}
public String getFormUuid() {
return this.formUuid;
}
public ListTableDataByFormInstanceIdTableIdRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListTableDataByFormInstanceIdTableIdRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListTableDataByFormInstanceIdTableIdRequest setSystemToken(String systemToken) {
this.systemToken = systemToken;
return this;
}
public String getSystemToken() {
return this.systemToken;
}
public ListTableDataByFormInstanceIdTableIdRequest setTableFieldId(String tableFieldId) {
this.tableFieldId = tableFieldId;
return this;
}
public String getTableFieldId() {
return this.tableFieldId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListTableDataByFormInstanceIdTableIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTableDataByFormInstanceIdTableIdResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListTableDataByFormInstanceIdTableIdResponseBody body;
public static ListTableDataByFormInstanceIdTableIdResponse build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdResponse self = new ListTableDataByFormInstanceIdTableIdResponse();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListTableDataByFormInstanceIdTableIdResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListTableDataByFormInstanceIdTableIdResponse setBody(ListTableDataByFormInstanceIdTableIdResponseBody body) {
this.body = body;
return this;
}
public ListTableDataByFormInstanceIdTableIdResponseBody 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/ListTableDataByFormInstanceIdTableIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTableDataByFormInstanceIdTableIdResponseBody extends TeaModel {
@NameInMap("data")
public java.util.List<String> data;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("pageNumber")
public Long pageNumber;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>20</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 ListTableDataByFormInstanceIdTableIdResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdResponseBody self = new ListTableDataByFormInstanceIdTableIdResponseBody();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdResponseBody setData(java.util.List<String> data) {
this.data = data;
return this;
}
public java.util.List<String> getData() {
return this.data;
}
public ListTableDataByFormInstanceIdTableIdResponseBody setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListTableDataByFormInstanceIdTableIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListTableDataByFormInstanceIdTableIdResponseBody setTotalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Long getTotalCount() {
return this.totalCount;
}
public ListTableDataByFormInstanceIdTableIdResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListTableDataByFormInstanceIdTableIdResponseBody 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/ListTableDataByFormInstanceIdTableIdShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTableDataByFormInstanceIdTableIdShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListTableDataByFormInstanceIdTableIdShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTableDataByFormInstanceIdTableIdShrinkHeaders self = new ListTableDataByFormInstanceIdTableIdShrinkHeaders();
return TeaModel.build(map, self);
}
public ListTableDataByFormInstanceIdTableIdShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTableDataByFormInstanceIdTableIdShrinkHeaders 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/ListTeamsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListTeamsHeadersAccountContext accountContext;
public static ListTeamsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTeamsHeaders self = new ListTeamsHeaders();
return TeaModel.build(map, self);
}
public ListTeamsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTeamsHeaders setAccountContext(ListTeamsHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListTeamsHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListTeamsHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListTeamsHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListTeamsHeadersAccountContext self = new ListTeamsHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListTeamsHeadersAccountContext 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/ListTeamsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>30</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("NextToken")
public String nextToken;
@NameInMap("TenantContext")
public ListTeamsRequestTenantContext tenantContext;
public static ListTeamsRequest build(java.util.Map<String, ?> map) throws Exception {
ListTeamsRequest self = new ListTeamsRequest();
return TeaModel.build(map, self);
}
public ListTeamsRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListTeamsRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTeamsRequest setTenantContext(ListTeamsRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListTeamsRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListTeamsRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListTeamsRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListTeamsRequestTenantContext self = new ListTeamsRequestTenantContext();
return TeaModel.build(map, self);
}
public ListTeamsRequestTenantContext 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/ListTeamsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListTeamsResponseBody body;
public static ListTeamsResponse build(java.util.Map<String, ?> map) throws Exception {
ListTeamsResponse self = new ListTeamsResponse();
return TeaModel.build(map, self);
}
public ListTeamsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListTeamsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListTeamsResponse setBody(ListTeamsResponseBody body) {
this.body = body;
return this;
}
public ListTeamsResponseBody 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/ListTeamsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("nextToken")
public String nextToken;
/**
* <strong>example:</strong>
* <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p>
*/
@NameInMap("requestId")
public String requestId;
@NameInMap("teams")
public java.util.List<ListTeamsResponseBodyTeams> teams;
/**
* <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 ListTeamsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListTeamsResponseBody self = new ListTeamsResponseBody();
return TeaModel.build(map, self);
}
public ListTeamsResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTeamsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListTeamsResponseBody setTeams(java.util.List<ListTeamsResponseBodyTeams> teams) {
this.teams = teams;
return this;
}
public java.util.List<ListTeamsResponseBodyTeams> getTeams() {
return this.teams;
}
public ListTeamsResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListTeamsResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListTeamsResponseBodyTeamsIcon extends TeaModel {
/**
* <strong>example:</strong>
* <p>URL</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p><a href="https://example/file-manage-files/zh-CN/202***13/ldet/avatar3.jpg">https://example/file-manage-files/zh-CN/202***13/ldet/avatar3.jpg</a></p>
*/
@NameInMap("Value")
public String value;
public static ListTeamsResponseBodyTeamsIcon build(java.util.Map<String, ?> map) throws Exception {
ListTeamsResponseBodyTeamsIcon self = new ListTeamsResponseBodyTeamsIcon();
return TeaModel.build(map, self);
}
public ListTeamsResponseBodyTeamsIcon setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListTeamsResponseBodyTeamsIcon setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
public static class ListTeamsResponseBodyTeams extends TeaModel {
/**
* <strong>example:</strong>
* <p>ding16b241fd05********288</p>
*/
@NameInMap("CorpId")
public String corpId;
/**
* <strong>example:</strong>
* <p><a href="https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg">https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg</a></p>
*/
@NameInMap("Cover")
public String cover;
/**
* <strong>example:</strong>
* <p>01472825524039877041</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("CreatorId")
public String creatorId;
/**
* <strong>example:</strong>
* <p>team_description</p>
*/
@NameInMap("Description")
public String description;
@NameInMap("Icon")
public ListTeamsResponseBodyTeamsIcon icon;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("ModifiedTime")
public String modifiedTime;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("ModifierId")
public String modifierId;
/**
* <strong>example:</strong>
* <p>team_name</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>lHiicjNFM2iSFYSdz2iPuI8ZwiEiE</p>
*/
@NameInMap("TeamId")
public String teamId;
public static ListTeamsResponseBodyTeams build(java.util.Map<String, ?> map) throws Exception {
ListTeamsResponseBodyTeams self = new ListTeamsResponseBodyTeams();
return TeaModel.build(map, self);
}
public ListTeamsResponseBodyTeams setCorpId(String corpId) {
this.corpId = corpId;
return this;
}
public String getCorpId() {
return this.corpId;
}
public ListTeamsResponseBodyTeams setCover(String cover) {
this.cover = cover;
return this;
}
public String getCover() {
return this.cover;
}
public ListTeamsResponseBodyTeams setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListTeamsResponseBodyTeams setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public ListTeamsResponseBodyTeams setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ListTeamsResponseBodyTeams setIcon(ListTeamsResponseBodyTeamsIcon icon) {
this.icon = icon;
return this;
}
public ListTeamsResponseBodyTeamsIcon getIcon() {
return this.icon;
}
public ListTeamsResponseBodyTeams setModifiedTime(String modifiedTime) {
this.modifiedTime = modifiedTime;
return this;
}
public String getModifiedTime() {
return this.modifiedTime;
}
public ListTeamsResponseBodyTeams setModifierId(String modifierId) {
this.modifierId = modifierId;
return this;
}
public String getModifierId() {
return this.modifierId;
}
public ListTeamsResponseBodyTeams setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListTeamsResponseBodyTeams setTeamId(String teamId) {
this.teamId = teamId;
return this;
}
public String getTeamId() {
return this.teamId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListTeamsShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListTeamsShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTeamsShrinkHeaders self = new ListTeamsShrinkHeaders();
return TeaModel.build(map, self);
}
public ListTeamsShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTeamsShrinkHeaders 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/ListTeamsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTeamsShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>30</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>2023-05-15T11:29Z</p>
*/
@NameInMap("NextToken")
public String nextToken;
@NameInMap("TenantContext")
public String tenantContextShrink;
public static ListTeamsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListTeamsShrinkRequest self = new ListTeamsShrinkRequest();
return TeaModel.build(map, self);
}
public ListTeamsShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListTeamsShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTeamsShrinkRequest 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/ListTemplateHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListTemplateHeadersAccountContext accountContext;
public static ListTemplateHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTemplateHeaders self = new ListTemplateHeaders();
return TeaModel.build(map, self);
}
public ListTemplateHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTemplateHeaders setAccountContext(ListTemplateHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListTemplateHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListTemplateHeadersAccountContext extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListTemplateHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListTemplateHeadersAccountContext self = new ListTemplateHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListTemplateHeadersAccountContext 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/ListTemplateRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>zzz</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>public_template</p>
*/
@NameInMap("TemplateType")
public String templateType;
@NameInMap("TenantContext")
public ListTemplateRequestTenantContext tenantContext;
/**
* <strong>example:</strong>
* <p>workspaceId</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static ListTemplateRequest build(java.util.Map<String, ?> map) throws Exception {
ListTemplateRequest self = new ListTemplateRequest();
return TeaModel.build(map, self);
}
public ListTemplateRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListTemplateRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTemplateRequest setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
public ListTemplateRequest setTenantContext(ListTemplateRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListTemplateRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public ListTemplateRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
public static class ListTemplateRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListTemplateRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListTemplateRequestTenantContext self = new ListTemplateRequestTenantContext();
return TeaModel.build(map, self);
}
public ListTemplateRequestTenantContext 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/ListTemplateResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListTemplateResponseBody body;
public static ListTemplateResponse build(java.util.Map<String, ?> map) throws Exception {
ListTemplateResponse self = new ListTemplateResponse();
return TeaModel.build(map, self);
}
public ListTemplateResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListTemplateResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListTemplateResponse setBody(ListTemplateResponseBody body) {
this.body = body;
return this;
}
public ListTemplateResponseBody 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/ListTemplateResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("hasMore")
public Boolean hasMore;
/**
* <strong>example:</strong>
* <p>next_token</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>[]</p>
*/
@NameInMap("templateList")
public java.util.List<ListTemplateResponseBodyTemplateList> templateList;
/**
* <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 ListTemplateResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListTemplateResponseBody self = new ListTemplateResponseBody();
return TeaModel.build(map, self);
}
public ListTemplateResponseBody setHasMore(Boolean hasMore) {
this.hasMore = hasMore;
return this;
}
public Boolean getHasMore() {
return this.hasMore;
}
public ListTemplateResponseBody setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTemplateResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListTemplateResponseBody setTemplateList(java.util.List<ListTemplateResponseBodyTemplateList> templateList) {
this.templateList = templateList;
return this;
}
public java.util.List<ListTemplateResponseBodyTemplateList> getTemplateList() {
return this.templateList;
}
public ListTemplateResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListTemplateResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListTemplateResponseBodyTemplateList extends TeaModel {
/**
* <strong>example:</strong>
* <p>URL</p>
*/
@NameInMap("CoverUrl")
public String coverUrl;
/**
* <strong>example:</strong>
* <p>1596506100000</p>
*/
@NameInMap("CreateTime")
public Long createTime;
/**
* <strong>example:</strong>
* <p>WORKBOOK</p>
*/
@NameInMap("DocType")
public String docType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>user_template</p>
*/
@NameInMap("TemplateType")
public String templateType;
/**
* <strong>example:</strong>
* <p>title</p>
*/
@NameInMap("Title")
public String title;
/**
* <strong>example:</strong>
* <p>1596506100000</p>
*/
@NameInMap("UpdateTime")
public Long updateTime;
/**
* <strong>example:</strong>
* <p>workspaceId</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static ListTemplateResponseBodyTemplateList build(java.util.Map<String, ?> map) throws Exception {
ListTemplateResponseBodyTemplateList self = new ListTemplateResponseBodyTemplateList();
return TeaModel.build(map, self);
}
public ListTemplateResponseBodyTemplateList setCoverUrl(String coverUrl) {
this.coverUrl = coverUrl;
return this;
}
public String getCoverUrl() {
return this.coverUrl;
}
public ListTemplateResponseBodyTemplateList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public ListTemplateResponseBodyTemplateList setDocType(String docType) {
this.docType = docType;
return this;
}
public String getDocType() {
return this.docType;
}
public ListTemplateResponseBodyTemplateList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListTemplateResponseBodyTemplateList setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
public ListTemplateResponseBodyTemplateList setTitle(String title) {
this.title = title;
return this;
}
public String getTitle() {
return this.title;
}
public ListTemplateResponseBodyTemplateList setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public Long getUpdateTime() {
return this.updateTime;
}
public ListTemplateResponseBodyTemplateList setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListTemplateShrinkHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateShrinkHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public String accountContextShrink;
public static ListTemplateShrinkHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTemplateShrinkHeaders self = new ListTemplateShrinkHeaders();
return TeaModel.build(map, self);
}
public ListTemplateShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTemplateShrinkHeaders 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/ListTemplateShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTemplateShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("MaxResults")
public Integer maxResults;
/**
* <strong>example:</strong>
* <p>zzz</p>
*/
@NameInMap("NextToken")
public String nextToken;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>public_template</p>
*/
@NameInMap("TemplateType")
public String templateType;
@NameInMap("TenantContext")
public String tenantContextShrink;
/**
* <strong>example:</strong>
* <p>workspaceId</p>
*/
@NameInMap("WorkspaceId")
public String workspaceId;
public static ListTemplateShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListTemplateShrinkRequest self = new ListTemplateShrinkRequest();
return TeaModel.build(map, self);
}
public ListTemplateShrinkRequest setMaxResults(Integer maxResults) {
this.maxResults = maxResults;
return this;
}
public Integer getMaxResults() {
return this.maxResults;
}
public ListTemplateShrinkRequest setNextToken(String nextToken) {
this.nextToken = nextToken;
return this;
}
public String getNextToken() {
return this.nextToken;
}
public ListTemplateShrinkRequest setTemplateType(String templateType) {
this.templateType = templateType;
return this;
}
public String getTemplateType() {
return this.templateType;
}
public ListTemplateShrinkRequest setTenantContextShrink(String tenantContextShrink) {
this.tenantContextShrink = tenantContextShrink;
return this;
}
public String getTenantContextShrink() {
return this.tenantContextShrink;
}
public ListTemplateShrinkRequest setWorkspaceId(String workspaceId) {
this.workspaceId = workspaceId;
return this;
}
public String getWorkspaceId() {
return this.workspaceId;
}
}
|
0
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
|
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/ListTicketOperateRecordHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTicketOperateRecordHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("AccountContext")
public ListTicketOperateRecordHeadersAccountContext accountContext;
public static ListTicketOperateRecordHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordHeaders self = new ListTicketOperateRecordHeaders();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTicketOperateRecordHeaders setAccountContext(ListTicketOperateRecordHeadersAccountContext accountContext) {
this.accountContext = accountContext;
return this;
}
public ListTicketOperateRecordHeadersAccountContext getAccountContext() {
return this.accountContext;
}
public static class ListTicketOperateRecordHeadersAccountContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("accountId")
public String accountId;
public static ListTicketOperateRecordHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordHeadersAccountContext self = new ListTicketOperateRecordHeadersAccountContext();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordHeadersAccountContext 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/ListTicketOperateRecordRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTicketOperateRecordRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>eKWh3xxxxiE</p>
*/
@NameInMap("OpenTeamId")
public String openTeamId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>Dq9hP8Sk2v6vQxxxxiE</p>
*/
@NameInMap("OpenTicketId")
public String openTicketId;
@NameInMap("TenantContext")
public ListTicketOperateRecordRequestTenantContext tenantContext;
public static ListTicketOperateRecordRequest build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordRequest self = new ListTicketOperateRecordRequest();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordRequest setOpenTeamId(String openTeamId) {
this.openTeamId = openTeamId;
return this;
}
public String getOpenTeamId() {
return this.openTeamId;
}
public ListTicketOperateRecordRequest setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
public ListTicketOperateRecordRequest setTenantContext(ListTicketOperateRecordRequestTenantContext tenantContext) {
this.tenantContext = tenantContext;
return this;
}
public ListTicketOperateRecordRequestTenantContext getTenantContext() {
return this.tenantContext;
}
public static class ListTicketOperateRecordRequestTenantContext extends TeaModel {
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("tenantId")
public String tenantId;
public static ListTicketOperateRecordRequestTenantContext build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordRequestTenantContext self = new ListTicketOperateRecordRequestTenantContext();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordRequestTenantContext 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/ListTicketOperateRecordResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTicketOperateRecordResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListTicketOperateRecordResponseBody body;
public static ListTicketOperateRecordResponse build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponse self = new ListTicketOperateRecordResponse();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListTicketOperateRecordResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListTicketOperateRecordResponse setBody(ListTicketOperateRecordResponseBody body) {
this.body = body;
return this;
}
public ListTicketOperateRecordResponseBody 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/ListTicketOperateRecordResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aliding20230426.models;
import com.aliyun.tea.*;
public class ListTicketOperateRecordResponseBody extends TeaModel {
@NameInMap("records")
public java.util.List<ListTicketOperateRecordResponseBodyRecords> records;
/**
* <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 ListTicketOperateRecordResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponseBody self = new ListTicketOperateRecordResponseBody();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponseBody setRecords(java.util.List<ListTicketOperateRecordResponseBodyRecords> records) {
this.records = records;
return this;
}
public java.util.List<ListTicketOperateRecordResponseBodyRecords> getRecords() {
return this.records;
}
public ListTicketOperateRecordResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListTicketOperateRecordResponseBody setVendorRequestId(String vendorRequestId) {
this.vendorRequestId = vendorRequestId;
return this;
}
public String getVendorRequestId() {
return this.vendorRequestId;
}
public ListTicketOperateRecordResponseBody setVendorType(String vendorType) {
this.vendorType = vendorType;
return this;
}
public String getVendorType() {
return this.vendorType;
}
public static class ListTicketOperateRecordResponseBodyRecordsOperator extends TeaModel {
/**
* <strong>example:</strong>
* <p>贤文</p>
*/
@NameInMap("NickName")
public String nickName;
/**
* <strong>example:</strong>
* <p>012345</p>
*/
@NameInMap("UnionId")
public String unionId;
public static ListTicketOperateRecordResponseBodyRecordsOperator build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponseBodyRecordsOperator self = new ListTicketOperateRecordResponseBodyRecordsOperator();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponseBodyRecordsOperator setNickName(String nickName) {
this.nickName = nickName;
return this;
}
public String getNickName() {
return this.nickName;
}
public ListTicketOperateRecordResponseBodyRecordsOperator setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
public static class ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments extends TeaModel {
/**
* <strong>example:</strong>
* <p>wahaha.txt</p>
*/
@NameInMap("FileName")
public String fileName;
/**
* <strong>example:</strong>
* <p>ticket/image/447xxxx9/43003/e2xxxec4243e940a1367_1625xxxx99.txt</p>
*/
@NameInMap("Key")
public String key;
public static ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments self = new ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments setFileName(String fileName) {
this.fileName = fileName;
return this;
}
public String getFileName() {
return this.fileName;
}
public ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
}
public static class ListTicketOperateRecordResponseBodyRecordsTicketMemo extends TeaModel {
@NameInMap("Attachments")
public java.util.List<ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments> attachments;
/**
* <strong>example:</strong>
* <p>贤文结束工单</p>
*/
@NameInMap("Memo")
public String memo;
public static ListTicketOperateRecordResponseBodyRecordsTicketMemo build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponseBodyRecordsTicketMemo self = new ListTicketOperateRecordResponseBodyRecordsTicketMemo();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponseBodyRecordsTicketMemo setAttachments(java.util.List<ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments> attachments) {
this.attachments = attachments;
return this;
}
public java.util.List<ListTicketOperateRecordResponseBodyRecordsTicketMemoAttachments> getAttachments() {
return this.attachments;
}
public ListTicketOperateRecordResponseBodyRecordsTicketMemo setMemo(String memo) {
this.memo = memo;
return this;
}
public String getMemo() {
return this.memo;
}
}
public static class ListTicketOperateRecordResponseBodyRecords extends TeaModel {
/**
* <strong>example:</strong>
* <p>a8iSxxxxgtgiE</p>
*/
@NameInMap("OpenTicketId")
public String openTicketId;
/**
* <strong>example:</strong>
* <p>{"originTakers":[{"nickName":"贤文","unionId":"Dq9hxxxxwiEiE"},{"nickName":"王鸿程","unionId":"4kITooxxxx5wiEiE"}]}</p>
*/
@NameInMap("OperateData")
public String operateData;
/**
* <strong>example:</strong>
* <p>2021-07-09 19:26:09</p>
*/
@NameInMap("OperateTime")
public String operateTime;
/**
* <strong>example:</strong>
* <p>FINISH</p>
*/
@NameInMap("Operation")
public String operation;
/**
* <strong>example:</strong>
* <p>结单</p>
*/
@NameInMap("OperationDisplayName")
public String operationDisplayName;
@NameInMap("Operator")
public ListTicketOperateRecordResponseBodyRecordsOperator operator;
@NameInMap("TicketMemo")
public ListTicketOperateRecordResponseBodyRecordsTicketMemo ticketMemo;
public static ListTicketOperateRecordResponseBodyRecords build(java.util.Map<String, ?> map) throws Exception {
ListTicketOperateRecordResponseBodyRecords self = new ListTicketOperateRecordResponseBodyRecords();
return TeaModel.build(map, self);
}
public ListTicketOperateRecordResponseBodyRecords setOpenTicketId(String openTicketId) {
this.openTicketId = openTicketId;
return this;
}
public String getOpenTicketId() {
return this.openTicketId;
}
public ListTicketOperateRecordResponseBodyRecords setOperateData(String operateData) {
this.operateData = operateData;
return this;
}
public String getOperateData() {
return this.operateData;
}
public ListTicketOperateRecordResponseBodyRecords setOperateTime(String operateTime) {
this.operateTime = operateTime;
return this;
}
public String getOperateTime() {
return this.operateTime;
}
public ListTicketOperateRecordResponseBodyRecords setOperation(String operation) {
this.operation = operation;
return this;
}
public String getOperation() {
return this.operation;
}
public ListTicketOperateRecordResponseBodyRecords setOperationDisplayName(String operationDisplayName) {
this.operationDisplayName = operationDisplayName;
return this;
}
public String getOperationDisplayName() {
return this.operationDisplayName;
}
public ListTicketOperateRecordResponseBodyRecords setOperator(ListTicketOperateRecordResponseBodyRecordsOperator operator) {
this.operator = operator;
return this;
}
public ListTicketOperateRecordResponseBodyRecordsOperator getOperator() {
return this.operator;
}
public ListTicketOperateRecordResponseBodyRecords setTicketMemo(ListTicketOperateRecordResponseBodyRecordsTicketMemo ticketMemo) {
this.ticketMemo = ticketMemo;
return this;
}
public ListTicketOperateRecordResponseBodyRecordsTicketMemo getTicketMemo() {
return this.ticketMemo;
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.