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/ListTicketOperateRecordShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListTicketOperateRecordShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static ListTicketOperateRecordShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { ListTicketOperateRecordShrinkHeaders self = new ListTicketOperateRecordShrinkHeaders(); return TeaModel.build(map, self); } public ListTicketOperateRecordShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public ListTicketOperateRecordShrinkHeaders 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/ListTicketOperateRecordShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListTicketOperateRecordShrinkRequest 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 String tenantContextShrink; public static ListTicketOperateRecordShrinkRequest build(java.util.Map<String, ?> map) throws Exception { ListTicketOperateRecordShrinkRequest self = new ListTicketOperateRecordShrinkRequest(); return TeaModel.build(map, self); } public ListTicketOperateRecordShrinkRequest setOpenTeamId(String openTeamId) { this.openTeamId = openTeamId; return this; } public String getOpenTeamId() { return this.openTeamId; } public ListTicketOperateRecordShrinkRequest setOpenTicketId(String openTicketId) { this.openTicketId = openTicketId; return this; } public String getOpenTicketId() { return this.openTicketId; } public ListTicketOperateRecordShrinkRequest 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/ListWorkspacesHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public ListWorkspacesHeadersAccountContext accountContext; public static ListWorkspacesHeaders build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesHeaders self = new ListWorkspacesHeaders(); return TeaModel.build(map, self); } public ListWorkspacesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public ListWorkspacesHeaders setAccountContext(ListWorkspacesHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public ListWorkspacesHeadersAccountContext getAccountContext() { return this.accountContext; } public static class ListWorkspacesHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static ListWorkspacesHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesHeadersAccountContext self = new ListWorkspacesHeadersAccountContext(); return TeaModel.build(map, self); } public ListWorkspacesHeadersAccountContext 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/ListWorkspacesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesRequest extends TeaModel { /** * <strong>example:</strong> * <p>30</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123123</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>VIEW_TIME_DESC</p> */ @NameInMap("OrderBy") public String orderBy; /** * <strong>example:</strong> * <p>qweqwe</p> */ @NameInMap("TeamId") public String teamId; @NameInMap("TenantContext") public ListWorkspacesRequestTenantContext tenantContext; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("WithPermissionRole") public Boolean withPermissionRole; public static ListWorkspacesRequest build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesRequest self = new ListWorkspacesRequest(); return TeaModel.build(map, self); } public ListWorkspacesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListWorkspacesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListWorkspacesRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public ListWorkspacesRequest setTeamId(String teamId) { this.teamId = teamId; return this; } public String getTeamId() { return this.teamId; } public ListWorkspacesRequest setTenantContext(ListWorkspacesRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public ListWorkspacesRequestTenantContext getTenantContext() { return this.tenantContext; } public ListWorkspacesRequest setWithPermissionRole(Boolean withPermissionRole) { this.withPermissionRole = withPermissionRole; return this; } public Boolean getWithPermissionRole() { return this.withPermissionRole; } public static class ListWorkspacesRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static ListWorkspacesRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesRequestTenantContext self = new ListWorkspacesRequestTenantContext(); return TeaModel.build(map, self); } public ListWorkspacesRequestTenantContext 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/ListWorkspacesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListWorkspacesResponseBody body; public static ListWorkspacesResponse build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesResponse self = new ListWorkspacesResponse(); return TeaModel.build(map, self); } public ListWorkspacesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListWorkspacesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListWorkspacesResponse setBody(ListWorkspacesResponseBody body) { this.body = body; return this; } public ListWorkspacesResponseBody 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/ListWorkspacesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>next_token</p> */ @NameInMap("nextToken") public String nextToken; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("workspaces") public java.util.List<ListWorkspacesResponseBodyWorkspaces> workspaces; public static ListWorkspacesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesResponseBody self = new ListWorkspacesResponseBody(); return TeaModel.build(map, self); } public ListWorkspacesResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListWorkspacesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListWorkspacesResponseBody setWorkspaces(java.util.List<ListWorkspacesResponseBodyWorkspaces> workspaces) { this.workspaces = workspaces; return this; } public java.util.List<ListWorkspacesResponseBodyWorkspaces> getWorkspaces() { return this.workspaces; } public static class ListWorkspacesResponseBodyWorkspacesIcon extends TeaModel { /** * <strong>example:</strong> * <p>URL</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>icon_url</p> */ @NameInMap("Value") public String value; public static ListWorkspacesResponseBodyWorkspacesIcon build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesResponseBodyWorkspacesIcon self = new ListWorkspacesResponseBodyWorkspacesIcon(); return TeaModel.build(map, self); } public ListWorkspacesResponseBodyWorkspacesIcon setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListWorkspacesResponseBodyWorkspacesIcon setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } } public static class ListWorkspacesResponseBodyWorkspaces extends TeaModel { /** * <strong>example:</strong> * <p>ding16b241fd05********288</p> */ @NameInMap("CorpId") public String corpId; /** * <strong>example:</strong> * <p><a href="https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg">https://example/file-manage-files/zh-CN/202***13/ldet/XXXX.jpg</a></p> */ @NameInMap("Cover") public String cover; /** * <strong>example:</strong> * <p>2023-05-15T11:29Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>workspace_creator_id</p> */ @NameInMap("CreatorId") public String creatorId; /** * <strong>example:</strong> * <p>workspace_description</p> */ @NameInMap("Description") public String description; @NameInMap("Icon") public ListWorkspacesResponseBodyWorkspacesIcon icon; /** * <strong>example:</strong> * <p>2023-05-15T11:29Z</p> */ @NameInMap("ModifiedTime") public String modifiedTime; /** * <strong>example:</strong> * <p>workspace_modifier_id</p> */ @NameInMap("ModifierId") public String modifierId; /** * <strong>example:</strong> * <p>workspace_name</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>READER</p> */ @NameInMap("PermissionRole") public String permissionRole; /** * <strong>example:</strong> * <p>ZgpG2NdyVXXjrKKzIBqMp5zkVMwvDqPk</p> */ @NameInMap("RootNodeId") public String rootNodeId; /** * <strong>example:</strong> * <p>iPes3KGYA9DxYSdz2iPuI8ZwiEiE</p> */ @NameInMap("TeamId") public String teamId; /** * <strong>example:</strong> * <p>TEAM</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>workspace_url</p> */ @NameInMap("Url") public String url; /** * <strong>example:</strong> * <p>By8jQS1ZYjGn5b0M</p> */ @NameInMap("WorkspaceId") public String workspaceId; public static ListWorkspacesResponseBodyWorkspaces build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesResponseBodyWorkspaces self = new ListWorkspacesResponseBodyWorkspaces(); return TeaModel.build(map, self); } public ListWorkspacesResponseBodyWorkspaces setCorpId(String corpId) { this.corpId = corpId; return this; } public String getCorpId() { return this.corpId; } public ListWorkspacesResponseBodyWorkspaces setCover(String cover) { this.cover = cover; return this; } public String getCover() { return this.cover; } public ListWorkspacesResponseBodyWorkspaces setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListWorkspacesResponseBodyWorkspaces setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public ListWorkspacesResponseBodyWorkspaces setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public ListWorkspacesResponseBodyWorkspaces setIcon(ListWorkspacesResponseBodyWorkspacesIcon icon) { this.icon = icon; return this; } public ListWorkspacesResponseBodyWorkspacesIcon getIcon() { return this.icon; } public ListWorkspacesResponseBodyWorkspaces setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } public String getModifiedTime() { return this.modifiedTime; } public ListWorkspacesResponseBodyWorkspaces setModifierId(String modifierId) { this.modifierId = modifierId; return this; } public String getModifierId() { return this.modifierId; } public ListWorkspacesResponseBodyWorkspaces setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListWorkspacesResponseBodyWorkspaces setPermissionRole(String permissionRole) { this.permissionRole = permissionRole; return this; } public String getPermissionRole() { return this.permissionRole; } public ListWorkspacesResponseBodyWorkspaces setRootNodeId(String rootNodeId) { this.rootNodeId = rootNodeId; return this; } public String getRootNodeId() { return this.rootNodeId; } public ListWorkspacesResponseBodyWorkspaces setTeamId(String teamId) { this.teamId = teamId; return this; } public String getTeamId() { return this.teamId; } public ListWorkspacesResponseBodyWorkspaces setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListWorkspacesResponseBodyWorkspaces setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public ListWorkspacesResponseBodyWorkspaces 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/ListWorkspacesShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static ListWorkspacesShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesShrinkHeaders self = new ListWorkspacesShrinkHeaders(); return TeaModel.build(map, self); } public ListWorkspacesShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public ListWorkspacesShrinkHeaders 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/ListWorkspacesShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class ListWorkspacesShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>30</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123123</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>VIEW_TIME_DESC</p> */ @NameInMap("OrderBy") public String orderBy; /** * <strong>example:</strong> * <p>qweqwe</p> */ @NameInMap("TeamId") public String teamId; @NameInMap("TenantContext") public String tenantContextShrink; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("WithPermissionRole") public Boolean withPermissionRole; public static ListWorkspacesShrinkRequest build(java.util.Map<String, ?> map) throws Exception { ListWorkspacesShrinkRequest self = new ListWorkspacesShrinkRequest(); return TeaModel.build(map, self); } public ListWorkspacesShrinkRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListWorkspacesShrinkRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListWorkspacesShrinkRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public ListWorkspacesShrinkRequest setTeamId(String teamId) { this.teamId = teamId; return this; } public String getTeamId() { return this.teamId; } public ListWorkspacesShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public ListWorkspacesShrinkRequest 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/PatchEventHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public PatchEventHeadersAccountContext accountContext; public static PatchEventHeaders build(java.util.Map<String, ?> map) throws Exception { PatchEventHeaders self = new PatchEventHeaders(); return TeaModel.build(map, self); } public PatchEventHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public PatchEventHeaders setAccountContext(PatchEventHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public PatchEventHeadersAccountContext getAccountContext() { return this.accountContext; } public static class PatchEventHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>123456</p> */ @NameInMap("accountId") public String accountId; public static PatchEventHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { PatchEventHeadersAccountContext self = new PatchEventHeadersAccountContext(); return TeaModel.build(map, self); } public PatchEventHeadersAccountContext 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/PatchEventRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventRequest extends TeaModel { @NameInMap("Attendees") public java.util.List<PatchEventRequestAttendees> attendees; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>primary</p> */ @NameInMap("CalendarId") public String calendarId; @NameInMap("CardInstances") public java.util.List<PatchEventRequestCardInstances> cardInstances; @NameInMap("Description") public String description; @NameInMap("End") public PatchEventRequestEnd end; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>iiiP35sJadba8aBSgjrwPRKgiEiF</p> */ @NameInMap("EventId") public String eventId; @NameInMap("Extra") public java.util.Map<String, String> extra; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IsAllDay") public Boolean isAllDay; @NameInMap("Location") public PatchEventRequestLocation location; @NameInMap("Recurrence") public PatchEventRequestRecurrence recurrence; @NameInMap("Reminders") public java.util.List<PatchEventRequestReminders> reminders; @NameInMap("Start") public PatchEventRequestStart start; @NameInMap("Summary") public String summary; public static PatchEventRequest build(java.util.Map<String, ?> map) throws Exception { PatchEventRequest self = new PatchEventRequest(); return TeaModel.build(map, self); } public PatchEventRequest setAttendees(java.util.List<PatchEventRequestAttendees> attendees) { this.attendees = attendees; return this; } public java.util.List<PatchEventRequestAttendees> getAttendees() { return this.attendees; } public PatchEventRequest setCalendarId(String calendarId) { this.calendarId = calendarId; return this; } public String getCalendarId() { return this.calendarId; } public PatchEventRequest setCardInstances(java.util.List<PatchEventRequestCardInstances> cardInstances) { this.cardInstances = cardInstances; return this; } public java.util.List<PatchEventRequestCardInstances> getCardInstances() { return this.cardInstances; } public PatchEventRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public PatchEventRequest setEnd(PatchEventRequestEnd end) { this.end = end; return this; } public PatchEventRequestEnd getEnd() { return this.end; } public PatchEventRequest setEventId(String eventId) { this.eventId = eventId; return this; } public String getEventId() { return this.eventId; } public PatchEventRequest setExtra(java.util.Map<String, String> extra) { this.extra = extra; return this; } public java.util.Map<String, String> getExtra() { return this.extra; } public PatchEventRequest setIsAllDay(Boolean isAllDay) { this.isAllDay = isAllDay; return this; } public Boolean getIsAllDay() { return this.isAllDay; } public PatchEventRequest setLocation(PatchEventRequestLocation location) { this.location = location; return this; } public PatchEventRequestLocation getLocation() { return this.location; } public PatchEventRequest setRecurrence(PatchEventRequestRecurrence recurrence) { this.recurrence = recurrence; return this; } public PatchEventRequestRecurrence getRecurrence() { return this.recurrence; } public PatchEventRequest setReminders(java.util.List<PatchEventRequestReminders> reminders) { this.reminders = reminders; return this; } public java.util.List<PatchEventRequestReminders> getReminders() { return this.reminders; } public PatchEventRequest setStart(PatchEventRequestStart start) { this.start = start; return this; } public PatchEventRequestStart getStart() { return this.start; } public PatchEventRequest setSummary(String summary) { this.summary = summary; return this; } public String getSummary() { return this.summary; } public static class PatchEventRequestAttendees extends TeaModel { /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("id") public String id; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("isOptional") public Boolean isOptional; public static PatchEventRequestAttendees build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestAttendees self = new PatchEventRequestAttendees(); return TeaModel.build(map, self); } public PatchEventRequestAttendees setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public PatchEventRequestAttendees setIsOptional(Boolean isOptional) { this.isOptional = isOptional; return this; } public Boolean getIsOptional() { return this.isOptional; } } public static class PatchEventRequestCardInstances extends TeaModel { @NameInMap("OutTrackId") public String outTrackId; @NameInMap("Scenario") public String scenario; public static PatchEventRequestCardInstances build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestCardInstances self = new PatchEventRequestCardInstances(); return TeaModel.build(map, self); } public PatchEventRequestCardInstances setOutTrackId(String outTrackId) { this.outTrackId = outTrackId; return this; } public String getOutTrackId() { return this.outTrackId; } public PatchEventRequestCardInstances setScenario(String scenario) { this.scenario = scenario; return this; } public String getScenario() { return this.scenario; } } public static class PatchEventRequestEnd 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 PatchEventRequestEnd build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestEnd self = new PatchEventRequestEnd(); return TeaModel.build(map, self); } public PatchEventRequestEnd setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public PatchEventRequestEnd setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public PatchEventRequestEnd setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } public static class PatchEventRequestLocation extends TeaModel { /** * <strong>example:</strong> * <p>room 1-2-3</p> */ @NameInMap("displayName") public String displayName; public static PatchEventRequestLocation build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestLocation self = new PatchEventRequestLocation(); return TeaModel.build(map, self); } public PatchEventRequestLocation setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } } public static class PatchEventRequestRecurrencePattern 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>last</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 PatchEventRequestRecurrencePattern build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestRecurrencePattern self = new PatchEventRequestRecurrencePattern(); return TeaModel.build(map, self); } public PatchEventRequestRecurrencePattern setDayOfMonth(Integer dayOfMonth) { this.dayOfMonth = dayOfMonth; return this; } public Integer getDayOfMonth() { return this.dayOfMonth; } public PatchEventRequestRecurrencePattern setDaysOfWeek(String daysOfWeek) { this.daysOfWeek = daysOfWeek; return this; } public String getDaysOfWeek() { return this.daysOfWeek; } public PatchEventRequestRecurrencePattern setIndex(String index) { this.index = index; return this; } public String getIndex() { return this.index; } public PatchEventRequestRecurrencePattern setInterval(Integer interval) { this.interval = interval; return this; } public Integer getInterval() { return this.interval; } public PatchEventRequestRecurrencePattern setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class PatchEventRequestRecurrenceRange extends TeaModel { /** * <strong>example:</strong> * <p>2021-12-31T10:15:30+08:00</p> */ @NameInMap("endDate") public String endDate; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("numberOfOccurrences") public Integer numberOfOccurrences; /** * <strong>example:</strong> * <p>endDate</p> */ @NameInMap("type") public String type; public static PatchEventRequestRecurrenceRange build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestRecurrenceRange self = new PatchEventRequestRecurrenceRange(); return TeaModel.build(map, self); } public PatchEventRequestRecurrenceRange setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public PatchEventRequestRecurrenceRange setNumberOfOccurrences(Integer numberOfOccurrences) { this.numberOfOccurrences = numberOfOccurrences; return this; } public Integer getNumberOfOccurrences() { return this.numberOfOccurrences; } public PatchEventRequestRecurrenceRange setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class PatchEventRequestRecurrence extends TeaModel { @NameInMap("pattern") public PatchEventRequestRecurrencePattern pattern; @NameInMap("range") public PatchEventRequestRecurrenceRange range; public static PatchEventRequestRecurrence build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestRecurrence self = new PatchEventRequestRecurrence(); return TeaModel.build(map, self); } public PatchEventRequestRecurrence setPattern(PatchEventRequestRecurrencePattern pattern) { this.pattern = pattern; return this; } public PatchEventRequestRecurrencePattern getPattern() { return this.pattern; } public PatchEventRequestRecurrence setRange(PatchEventRequestRecurrenceRange range) { this.range = range; return this; } public PatchEventRequestRecurrenceRange getRange() { return this.range; } } public static class PatchEventRequestReminders extends TeaModel { /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("method") public String method; /** * <strong>example:</strong> * <p>15</p> */ @NameInMap("minutes") public Integer minutes; public static PatchEventRequestReminders build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestReminders self = new PatchEventRequestReminders(); return TeaModel.build(map, self); } public PatchEventRequestReminders setMethod(String method) { this.method = method; return this; } public String getMethod() { return this.method; } public PatchEventRequestReminders setMinutes(Integer minutes) { this.minutes = minutes; return this; } public Integer getMinutes() { return this.minutes; } } public static class PatchEventRequestStart 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 PatchEventRequestStart build(java.util.Map<String, ?> map) throws Exception { PatchEventRequestStart self = new PatchEventRequestStart(); return TeaModel.build(map, self); } public PatchEventRequestStart setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public PatchEventRequestStart setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public PatchEventRequestStart setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/PatchEventResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public PatchEventResponseBody body; public static PatchEventResponse build(java.util.Map<String, ?> map) throws Exception { PatchEventResponse self = new PatchEventResponse(); return TeaModel.build(map, self); } public PatchEventResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public PatchEventResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public PatchEventResponse setBody(PatchEventResponseBody body) { this.body = body; return this; } public PatchEventResponseBody 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/PatchEventResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventResponseBody extends TeaModel { @NameInMap("attendees") public java.util.List<PatchEventResponseBodyAttendees> attendees; /** * <strong>example:</strong> * <p>2022-10-25T02:26:14Z</p> */ @NameInMap("createTime") public String createTime; @NameInMap("description") public String description; @NameInMap("end") public PatchEventResponseBodyEnd end; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("id") public String id; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("isAllDay") public Boolean isAllDay; @NameInMap("location") public PatchEventResponseBodyLocation location; @NameInMap("organizer") public PatchEventResponseBodyOrganizer organizer; @NameInMap("recurrence") public PatchEventResponseBodyRecurrence recurrence; @NameInMap("reminders") public java.util.List<PatchEventResponseBodyReminders> reminders; /** * <p>requestId</p> * * <strong>example:</strong> * <p>4248DCC9-785F-5A14-8BE0-830FD52E1261</p> */ @NameInMap("requestId") public String requestId; @NameInMap("start") public PatchEventResponseBodyStart start; @NameInMap("summary") public String summary; /** * <strong>example:</strong> * <p>2020-01-01T10:15:30+08:00</p> */ @NameInMap("updateTime") public String updateTime; public static PatchEventResponseBody build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBody self = new PatchEventResponseBody(); return TeaModel.build(map, self); } public PatchEventResponseBody setAttendees(java.util.List<PatchEventResponseBodyAttendees> attendees) { this.attendees = attendees; return this; } public java.util.List<PatchEventResponseBodyAttendees> getAttendees() { return this.attendees; } public PatchEventResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public PatchEventResponseBody setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public PatchEventResponseBody setEnd(PatchEventResponseBodyEnd end) { this.end = end; return this; } public PatchEventResponseBodyEnd getEnd() { return this.end; } public PatchEventResponseBody setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public PatchEventResponseBody setIsAllDay(Boolean isAllDay) { this.isAllDay = isAllDay; return this; } public Boolean getIsAllDay() { return this.isAllDay; } public PatchEventResponseBody setLocation(PatchEventResponseBodyLocation location) { this.location = location; return this; } public PatchEventResponseBodyLocation getLocation() { return this.location; } public PatchEventResponseBody setOrganizer(PatchEventResponseBodyOrganizer organizer) { this.organizer = organizer; return this; } public PatchEventResponseBodyOrganizer getOrganizer() { return this.organizer; } public PatchEventResponseBody setRecurrence(PatchEventResponseBodyRecurrence recurrence) { this.recurrence = recurrence; return this; } public PatchEventResponseBodyRecurrence getRecurrence() { return this.recurrence; } public PatchEventResponseBody setReminders(java.util.List<PatchEventResponseBodyReminders> reminders) { this.reminders = reminders; return this; } public java.util.List<PatchEventResponseBodyReminders> getReminders() { return this.reminders; } public PatchEventResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public PatchEventResponseBody setStart(PatchEventResponseBodyStart start) { this.start = start; return this; } public PatchEventResponseBodyStart getStart() { return this.start; } public PatchEventResponseBody setSummary(String summary) { this.summary = summary; return this; } public String getSummary() { return this.summary; } public PatchEventResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public static class PatchEventResponseBodyAttendees extends TeaModel { /** * <strong>example:</strong> * <p>tony</p> */ @NameInMap("DisplayName") public String displayName; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("Id") public String id; /** * <strong>example:</strong> * <p>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 PatchEventResponseBodyAttendees build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyAttendees self = new PatchEventResponseBodyAttendees(); return TeaModel.build(map, self); } public PatchEventResponseBodyAttendees setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } public PatchEventResponseBodyAttendees setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public PatchEventResponseBodyAttendees setIsOptional(Boolean isOptional) { this.isOptional = isOptional; return this; } public Boolean getIsOptional() { return this.isOptional; } public PatchEventResponseBodyAttendees setResponseStatus(String responseStatus) { this.responseStatus = responseStatus; return this; } public String getResponseStatus() { return this.responseStatus; } public PatchEventResponseBodyAttendees setSelf(Boolean self) { this.self = self; return this; } public Boolean getSelf() { return this.self; } } public static class PatchEventResponseBodyEnd 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 PatchEventResponseBodyEnd build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyEnd self = new PatchEventResponseBodyEnd(); return TeaModel.build(map, self); } public PatchEventResponseBodyEnd setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public PatchEventResponseBodyEnd setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public PatchEventResponseBodyEnd setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } public static class PatchEventResponseBodyLocation extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("DisplayName") public String displayName; @NameInMap("MeetingRooms") public java.util.List<String> meetingRooms; public static PatchEventResponseBodyLocation build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyLocation self = new PatchEventResponseBodyLocation(); return TeaModel.build(map, self); } public PatchEventResponseBodyLocation setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } public PatchEventResponseBodyLocation setMeetingRooms(java.util.List<String> meetingRooms) { this.meetingRooms = meetingRooms; return this; } public java.util.List<String> getMeetingRooms() { return this.meetingRooms; } } public static class PatchEventResponseBodyOrganizer extends TeaModel { /** * <strong>example:</strong> * <p>tony</p> */ @NameInMap("DisplayName") public String displayName; /** * <strong>example:</strong> * <p>123456</p> */ @NameInMap("Id") public String id; /** * <strong>example:</strong> * <p>accepted</p> */ @NameInMap("ResponseStatus") public String responseStatus; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("Self") public Boolean self; public static PatchEventResponseBodyOrganizer build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyOrganizer self = new PatchEventResponseBodyOrganizer(); return TeaModel.build(map, self); } public PatchEventResponseBodyOrganizer setDisplayName(String displayName) { this.displayName = displayName; return this; } public String getDisplayName() { return this.displayName; } public PatchEventResponseBodyOrganizer setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public PatchEventResponseBodyOrganizer setResponseStatus(String responseStatus) { this.responseStatus = responseStatus; return this; } public String getResponseStatus() { return this.responseStatus; } public PatchEventResponseBodyOrganizer setSelf(Boolean self) { this.self = self; return this; } public Boolean getSelf() { return this.self; } } public static class PatchEventResponseBodyRecurrencePattern 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>daily</p> */ @NameInMap("Type") public String type; public static PatchEventResponseBodyRecurrencePattern build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyRecurrencePattern self = new PatchEventResponseBodyRecurrencePattern(); return TeaModel.build(map, self); } public PatchEventResponseBodyRecurrencePattern setDayOfMonth(Integer dayOfMonth) { this.dayOfMonth = dayOfMonth; return this; } public Integer getDayOfMonth() { return this.dayOfMonth; } public PatchEventResponseBodyRecurrencePattern setDaysOfWeek(String daysOfWeek) { this.daysOfWeek = daysOfWeek; return this; } public String getDaysOfWeek() { return this.daysOfWeek; } public PatchEventResponseBodyRecurrencePattern setIndex(String index) { this.index = index; return this; } public String getIndex() { return this.index; } public PatchEventResponseBodyRecurrencePattern setInterval(Integer interval) { this.interval = interval; return this; } public Integer getInterval() { return this.interval; } public PatchEventResponseBodyRecurrencePattern setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class PatchEventResponseBodyRecurrenceRange 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 PatchEventResponseBodyRecurrenceRange build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyRecurrenceRange self = new PatchEventResponseBodyRecurrenceRange(); return TeaModel.build(map, self); } public PatchEventResponseBodyRecurrenceRange setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public PatchEventResponseBodyRecurrenceRange setNumberOfOccurrences(Integer numberOfOccurrences) { this.numberOfOccurrences = numberOfOccurrences; return this; } public Integer getNumberOfOccurrences() { return this.numberOfOccurrences; } public PatchEventResponseBodyRecurrenceRange setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class PatchEventResponseBodyRecurrence extends TeaModel { @NameInMap("Pattern") public PatchEventResponseBodyRecurrencePattern pattern; @NameInMap("Range") public PatchEventResponseBodyRecurrenceRange range; public static PatchEventResponseBodyRecurrence build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyRecurrence self = new PatchEventResponseBodyRecurrence(); return TeaModel.build(map, self); } public PatchEventResponseBodyRecurrence setPattern(PatchEventResponseBodyRecurrencePattern pattern) { this.pattern = pattern; return this; } public PatchEventResponseBodyRecurrencePattern getPattern() { return this.pattern; } public PatchEventResponseBodyRecurrence setRange(PatchEventResponseBodyRecurrenceRange range) { this.range = range; return this; } public PatchEventResponseBodyRecurrenceRange getRange() { return this.range; } } public static class PatchEventResponseBodyReminders 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 PatchEventResponseBodyReminders build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyReminders self = new PatchEventResponseBodyReminders(); return TeaModel.build(map, self); } public PatchEventResponseBodyReminders setMethod(String method) { this.method = method; return this; } public String getMethod() { return this.method; } public PatchEventResponseBodyReminders setMinutes(String minutes) { this.minutes = minutes; return this; } public String getMinutes() { return this.minutes; } } public static class PatchEventResponseBodyStart 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 PatchEventResponseBodyStart build(java.util.Map<String, ?> map) throws Exception { PatchEventResponseBodyStart self = new PatchEventResponseBodyStart(); return TeaModel.build(map, self); } public PatchEventResponseBodyStart setDate(String date) { this.date = date; return this; } public String getDate() { return this.date; } public PatchEventResponseBodyStart setDateTime(String dateTime) { this.dateTime = dateTime; return this; } public String getDateTime() { return this.dateTime; } public PatchEventResponseBodyStart setTimeZone(String timeZone) { this.timeZone = timeZone; return this; } public String getTimeZone() { return this.timeZone; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/PatchEventShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static PatchEventShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { PatchEventShrinkHeaders self = new PatchEventShrinkHeaders(); return TeaModel.build(map, self); } public PatchEventShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public PatchEventShrinkHeaders 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/PatchEventShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class PatchEventShrinkRequest extends TeaModel { @NameInMap("Attendees") public String attendeesShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>primary</p> */ @NameInMap("CalendarId") public String calendarId; @NameInMap("CardInstances") public String cardInstancesShrink; @NameInMap("Description") public String description; @NameInMap("End") public String endShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>iiiP35sJadba8aBSgjrwPRKgiEiF</p> */ @NameInMap("EventId") public String eventId; @NameInMap("Extra") public String extraShrink; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IsAllDay") public Boolean isAllDay; @NameInMap("Location") public String locationShrink; @NameInMap("Recurrence") public String recurrenceShrink; @NameInMap("Reminders") public String remindersShrink; @NameInMap("Start") public String startShrink; @NameInMap("Summary") public String summary; public static PatchEventShrinkRequest build(java.util.Map<String, ?> map) throws Exception { PatchEventShrinkRequest self = new PatchEventShrinkRequest(); return TeaModel.build(map, self); } public PatchEventShrinkRequest setAttendeesShrink(String attendeesShrink) { this.attendeesShrink = attendeesShrink; return this; } public String getAttendeesShrink() { return this.attendeesShrink; } public PatchEventShrinkRequest setCalendarId(String calendarId) { this.calendarId = calendarId; return this; } public String getCalendarId() { return this.calendarId; } public PatchEventShrinkRequest setCardInstancesShrink(String cardInstancesShrink) { this.cardInstancesShrink = cardInstancesShrink; return this; } public String getCardInstancesShrink() { return this.cardInstancesShrink; } public PatchEventShrinkRequest setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public PatchEventShrinkRequest setEndShrink(String endShrink) { this.endShrink = endShrink; return this; } public String getEndShrink() { return this.endShrink; } public PatchEventShrinkRequest setEventId(String eventId) { this.eventId = eventId; return this; } public String getEventId() { return this.eventId; } public PatchEventShrinkRequest setExtraShrink(String extraShrink) { this.extraShrink = extraShrink; return this; } public String getExtraShrink() { return this.extraShrink; } public PatchEventShrinkRequest setIsAllDay(Boolean isAllDay) { this.isAllDay = isAllDay; return this; } public Boolean getIsAllDay() { return this.isAllDay; } public PatchEventShrinkRequest setLocationShrink(String locationShrink) { this.locationShrink = locationShrink; return this; } public String getLocationShrink() { return this.locationShrink; } public PatchEventShrinkRequest setRecurrenceShrink(String recurrenceShrink) { this.recurrenceShrink = recurrenceShrink; return this; } public String getRecurrenceShrink() { return this.recurrenceShrink; } public PatchEventShrinkRequest setRemindersShrink(String remindersShrink) { this.remindersShrink = remindersShrink; return this; } public String getRemindersShrink() { return this.remindersShrink; } public PatchEventShrinkRequest setStartShrink(String startShrink) { this.startShrink = startShrink; return this; } public String getStartShrink() { return this.startShrink; } public PatchEventShrinkRequest setSummary(String summary) { this.summary = summary; return this; } public String getSummary() { return this.summary; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryCloudRecordTextHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryCloudRecordTextHeadersAccountContext accountContext; public static QueryCloudRecordTextHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextHeaders self = new QueryCloudRecordTextHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordTextHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordTextHeaders setAccountContext(QueryCloudRecordTextHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryCloudRecordTextHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryCloudRecordTextHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryCloudRecordTextHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextHeadersAccountContext self = new QueryCloudRecordTextHeadersAccountContext(); return TeaModel.build(map, self); } public QueryCloudRecordTextHeadersAccountContext 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/QueryCloudRecordTextRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextRequest extends TeaModel { /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("Direction") public String direction; /** * <strong>example:</strong> * <p>20000</p> */ @NameInMap("MaxResults") public Long maxResults; /** * <strong>example:</strong> * <p>1631172045153000</p> */ @NameInMap("NextToken") public Long nextToken; /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("StartTime") public Long startTime; @NameInMap("TenantContext") public QueryCloudRecordTextRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryCloudRecordTextRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextRequest self = new QueryCloudRecordTextRequest(); return TeaModel.build(map, self); } public QueryCloudRecordTextRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public QueryCloudRecordTextRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public QueryCloudRecordTextRequest setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public QueryCloudRecordTextRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordTextRequest setTenantContext(QueryCloudRecordTextRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryCloudRecordTextRequestTenantContext getTenantContext() { return this.tenantContext; } public QueryCloudRecordTextRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public static class QueryCloudRecordTextRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryCloudRecordTextRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextRequestTenantContext self = new QueryCloudRecordTextRequestTenantContext(); return TeaModel.build(map, self); } public QueryCloudRecordTextRequestTenantContext 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/QueryCloudRecordTextResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryCloudRecordTextResponseBody body; public static QueryCloudRecordTextResponse build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextResponse self = new QueryCloudRecordTextResponse(); return TeaModel.build(map, self); } public QueryCloudRecordTextResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryCloudRecordTextResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryCloudRecordTextResponse setBody(QueryCloudRecordTextResponseBody body) { this.body = body; return this; } public QueryCloudRecordTextResponseBody 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/QueryCloudRecordTextResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("hasMore") public Boolean hasMore; @NameInMap("paragraphList") public java.util.List<QueryCloudRecordTextResponseBodyParagraphList> paragraphList; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; public static QueryCloudRecordTextResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextResponseBody self = new QueryCloudRecordTextResponseBody(); return TeaModel.build(map, self); } public QueryCloudRecordTextResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public QueryCloudRecordTextResponseBody setParagraphList(java.util.List<QueryCloudRecordTextResponseBodyParagraphList> paragraphList) { this.paragraphList = paragraphList; return this; } public java.util.List<QueryCloudRecordTextResponseBodyParagraphList> getParagraphList() { return this.paragraphList; } public QueryCloudRecordTextResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList extends TeaModel { /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>这里</p> */ @NameInMap("Word") public String word; /** * <strong>example:</strong> * <p>1631172050535000#0</p> */ @NameInMap("WordId") public String wordId; public static QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList self = new QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList(); return TeaModel.build(map, self); } public QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList setWord(String word) { this.word = word; return this; } public String getWord() { return this.word; } public QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList setWordId(String wordId) { this.wordId = wordId; return this; } public String getWordId() { return this.wordId; } } public static class QueryCloudRecordTextResponseBodyParagraphListSentenceList extends TeaModel { /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p>这里是小钉</p> */ @NameInMap("Sentence") public String sentence; /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; @NameInMap("WordList") public java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList> wordList; public static QueryCloudRecordTextResponseBodyParagraphListSentenceList build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextResponseBodyParagraphListSentenceList self = new QueryCloudRecordTextResponseBodyParagraphListSentenceList(); return TeaModel.build(map, self); } public QueryCloudRecordTextResponseBodyParagraphListSentenceList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryCloudRecordTextResponseBodyParagraphListSentenceList setSentence(String sentence) { this.sentence = sentence; return this; } public String getSentence() { return this.sentence; } public QueryCloudRecordTextResponseBodyParagraphListSentenceList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordTextResponseBodyParagraphListSentenceList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public QueryCloudRecordTextResponseBodyParagraphListSentenceList setWordList(java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList> wordList) { this.wordList = wordList; return this; } public java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceListWordList> getWordList() { return this.wordList; } } public static class QueryCloudRecordTextResponseBodyParagraphList extends TeaModel { /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p>1631172045153000</p> */ @NameInMap("NextTtoken") public Long nextTtoken; /** * <strong>example:</strong> * <p>小钉</p> */ @NameInMap("NickName") public String nickName; /** * <strong>example:</strong> * <p>嘿!你好,这里是小钉</p> */ @NameInMap("Paragraph") public String paragraph; /** * <strong>example:</strong> * <p>44444</p> */ @NameInMap("RecordId") public Long recordId; @NameInMap("SentenceList") public java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceList> sentenceList; /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Status") public Long status; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryCloudRecordTextResponseBodyParagraphList build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextResponseBodyParagraphList self = new QueryCloudRecordTextResponseBodyParagraphList(); return TeaModel.build(map, self); } public QueryCloudRecordTextResponseBodyParagraphList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryCloudRecordTextResponseBodyParagraphList setNextTtoken(Long nextTtoken) { this.nextTtoken = nextTtoken; return this; } public Long getNextTtoken() { return this.nextTtoken; } public QueryCloudRecordTextResponseBodyParagraphList setNickName(String nickName) { this.nickName = nickName; return this; } public String getNickName() { return this.nickName; } public QueryCloudRecordTextResponseBodyParagraphList setParagraph(String paragraph) { this.paragraph = paragraph; return this; } public String getParagraph() { return this.paragraph; } public QueryCloudRecordTextResponseBodyParagraphList setRecordId(Long recordId) { this.recordId = recordId; return this; } public Long getRecordId() { return this.recordId; } public QueryCloudRecordTextResponseBodyParagraphList setSentenceList(java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceList> sentenceList) { this.sentenceList = sentenceList; return this; } public java.util.List<QueryCloudRecordTextResponseBodyParagraphListSentenceList> getSentenceList() { return this.sentenceList; } public QueryCloudRecordTextResponseBodyParagraphList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordTextResponseBodyParagraphList setStatus(Long status) { this.status = status; return this; } public Long getStatus() { return this.status; } public QueryCloudRecordTextResponseBodyParagraphList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryCloudRecordTextShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryCloudRecordTextShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextShrinkHeaders self = new QueryCloudRecordTextShrinkHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordTextShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordTextShrinkHeaders 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/QueryCloudRecordTextShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordTextShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("Direction") public String direction; /** * <strong>example:</strong> * <p>20000</p> */ @NameInMap("MaxResults") public Long maxResults; /** * <strong>example:</strong> * <p>1631172045153000</p> */ @NameInMap("NextToken") public Long nextToken; /** * <strong>example:</strong> * <p>7940</p> */ @NameInMap("StartTime") public Long startTime; @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryCloudRecordTextShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordTextShrinkRequest self = new QueryCloudRecordTextShrinkRequest(); return TeaModel.build(map, self); } public QueryCloudRecordTextShrinkRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public QueryCloudRecordTextShrinkRequest setMaxResults(Long maxResults) { this.maxResults = maxResults; return this; } public Long getMaxResults() { return this.maxResults; } public QueryCloudRecordTextShrinkRequest setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public QueryCloudRecordTextShrinkRequest setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordTextShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public QueryCloudRecordTextShrinkRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryCloudRecordVideoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryCloudRecordVideoHeadersAccountContext accountContext; public static QueryCloudRecordVideoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoHeaders self = new QueryCloudRecordVideoHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordVideoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordVideoHeaders setAccountContext(QueryCloudRecordVideoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryCloudRecordVideoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryCloudRecordVideoHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryCloudRecordVideoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoHeadersAccountContext self = new QueryCloudRecordVideoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryCloudRecordVideoHeadersAccountContext 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/QueryCloudRecordVideoPlayInfoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryCloudRecordVideoPlayInfoHeadersAccountContext accountContext; public static QueryCloudRecordVideoPlayInfoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoHeaders self = new QueryCloudRecordVideoPlayInfoHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordVideoPlayInfoHeaders setAccountContext(QueryCloudRecordVideoPlayInfoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryCloudRecordVideoPlayInfoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryCloudRecordVideoPlayInfoHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryCloudRecordVideoPlayInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoHeadersAccountContext self = new QueryCloudRecordVideoPlayInfoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoHeadersAccountContext 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/QueryCloudRecordVideoPlayInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>6139b4xxx</p> */ @NameInMap("ConferenceId") public String conferenceId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>44444444</p> */ @NameInMap("MediaId") public String mediaId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-shenzhen</p> */ @NameInMap("RegionId") public String regionId; @NameInMap("TenantContext") public QueryCloudRecordVideoPlayInfoRequestTenantContext tenantContext; public static QueryCloudRecordVideoPlayInfoRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoRequest self = new QueryCloudRecordVideoPlayInfoRequest(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public QueryCloudRecordVideoPlayInfoRequest setMediaId(String mediaId) { this.mediaId = mediaId; return this; } public String getMediaId() { return this.mediaId; } public QueryCloudRecordVideoPlayInfoRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public QueryCloudRecordVideoPlayInfoRequest setTenantContext(QueryCloudRecordVideoPlayInfoRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryCloudRecordVideoPlayInfoRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryCloudRecordVideoPlayInfoRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryCloudRecordVideoPlayInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoRequestTenantContext self = new QueryCloudRecordVideoPlayInfoRequestTenantContext(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoRequestTenantContext 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/QueryCloudRecordVideoPlayInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryCloudRecordVideoPlayInfoResponseBody body; public static QueryCloudRecordVideoPlayInfoResponse build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoResponse self = new QueryCloudRecordVideoPlayInfoResponse(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryCloudRecordVideoPlayInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryCloudRecordVideoPlayInfoResponse setBody(QueryCloudRecordVideoPlayInfoResponseBody body) { this.body = body; return this; } public QueryCloudRecordVideoPlayInfoResponseBody 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/QueryCloudRecordVideoPlayInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>59886</p> */ @NameInMap("duration") public Long duration; /** * <strong>example:</strong> * <p>1127942</p> */ @NameInMap("fileSize") public Long fileSize; /** * <strong>example:</strong> * <p><a href="https://vod.mcs.dingtalk.com/faa1566c5bc24f21821ae2394f82db2e/8bbd1612e686462ab4717919f67bb721-b8531e0d534b2f9747a9fdfxxxxxxxxc-sd.mp4">https://vod.mcs.dingtalk.com/faa1566c5bc24f21821ae2394f82db2e/8bbd1612e686462ab4717919f67bb721-b8531e0d534b2f9747a9fdfxxxxxxxxc-sd.mp4</a></p> */ @NameInMap("mp4FileUrl") public String mp4FileUrl; /** * <strong>example:</strong> * <p><a href="https://vod.mcs.dingtalk.com/faa1566c5bc24f21821ae2394f82db2e/8bbd1612e686462ab4717919f67bb721-ab85cc044a163568c9485xxxxxxxx76d-sd.m3u8">https://vod.mcs.dingtalk.com/faa1566c5bc24f21821ae2394f82db2e/8bbd1612e686462ab4717919f67bb721-ab85cc044a163568c9485xxxxxxxx76d-sd.m3u8</a></p> */ @NameInMap("playUrl") public String playUrl; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("status") public Long status; public static QueryCloudRecordVideoPlayInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoResponseBody self = new QueryCloudRecordVideoPlayInfoResponseBody(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoResponseBody setDuration(Long duration) { this.duration = duration; return this; } public Long getDuration() { return this.duration; } public QueryCloudRecordVideoPlayInfoResponseBody setFileSize(Long fileSize) { this.fileSize = fileSize; return this; } public Long getFileSize() { return this.fileSize; } public QueryCloudRecordVideoPlayInfoResponseBody setMp4FileUrl(String mp4FileUrl) { this.mp4FileUrl = mp4FileUrl; return this; } public String getMp4FileUrl() { return this.mp4FileUrl; } public QueryCloudRecordVideoPlayInfoResponseBody setPlayUrl(String playUrl) { this.playUrl = playUrl; return this; } public String getPlayUrl() { return this.playUrl; } public QueryCloudRecordVideoPlayInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryCloudRecordVideoPlayInfoResponseBody setStatus(Long status) { this.status = status; return this; } public Long getStatus() { return this.status; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryCloudRecordVideoPlayInfoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryCloudRecordVideoPlayInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoShrinkHeaders self = new QueryCloudRecordVideoPlayInfoShrinkHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordVideoPlayInfoShrinkHeaders 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/QueryCloudRecordVideoPlayInfoShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoPlayInfoShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>6139b4xxx</p> */ @NameInMap("ConferenceId") public String conferenceId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>44444444</p> */ @NameInMap("MediaId") public String mediaId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>cn-shenzhen</p> */ @NameInMap("RegionId") public String regionId; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryCloudRecordVideoPlayInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoPlayInfoShrinkRequest self = new QueryCloudRecordVideoPlayInfoShrinkRequest(); return TeaModel.build(map, self); } public QueryCloudRecordVideoPlayInfoShrinkRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public QueryCloudRecordVideoPlayInfoShrinkRequest setMediaId(String mediaId) { this.mediaId = mediaId; return this; } public String getMediaId() { return this.mediaId; } public QueryCloudRecordVideoPlayInfoShrinkRequest setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public QueryCloudRecordVideoPlayInfoShrinkRequest 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/QueryCloudRecordVideoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoRequest extends TeaModel { @NameInMap("TenantContext") public QueryCloudRecordVideoRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryCloudRecordVideoRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoRequest self = new QueryCloudRecordVideoRequest(); return TeaModel.build(map, self); } public QueryCloudRecordVideoRequest setTenantContext(QueryCloudRecordVideoRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryCloudRecordVideoRequestTenantContext getTenantContext() { return this.tenantContext; } public QueryCloudRecordVideoRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public static class QueryCloudRecordVideoRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryCloudRecordVideoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoRequestTenantContext self = new QueryCloudRecordVideoRequestTenantContext(); return TeaModel.build(map, self); } public QueryCloudRecordVideoRequestTenantContext 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/QueryCloudRecordVideoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryCloudRecordVideoResponseBody body; public static QueryCloudRecordVideoResponse build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoResponse self = new QueryCloudRecordVideoResponse(); return TeaModel.build(map, self); } public QueryCloudRecordVideoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryCloudRecordVideoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryCloudRecordVideoResponse setBody(QueryCloudRecordVideoResponseBody body) { this.body = body; return this; } public QueryCloudRecordVideoResponseBody 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/QueryCloudRecordVideoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoResponseBody extends TeaModel { /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("videoList") public java.util.List<QueryCloudRecordVideoResponseBodyVideoList> videoList; public static QueryCloudRecordVideoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoResponseBody self = new QueryCloudRecordVideoResponseBody(); return TeaModel.build(map, self); } public QueryCloudRecordVideoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryCloudRecordVideoResponseBody setVideoList(java.util.List<QueryCloudRecordVideoResponseBodyVideoList> videoList) { this.videoList = videoList; return this; } public java.util.List<QueryCloudRecordVideoResponseBodyVideoList> getVideoList() { return this.videoList; } public static class QueryCloudRecordVideoResponseBodyVideoList extends TeaModel { /** * <strong>example:</strong> * <p>59886</p> */ @NameInMap("Duration") public Long duration; /** * <strong>example:</strong> * <p>1631172094000</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p>1127942</p> */ @NameInMap("FileSize") public Long fileSize; /** * <strong>example:</strong> * <p>faa1566c5bc24f21821ae2394f82db2e</p> */ @NameInMap("MediaId") public String mediaId; /** * <strong>example:</strong> * <p>290882268xxx1172033231</p> */ @NameInMap("RecordId") public String recordId; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("RecordType") public Long recordType; /** * <strong>example:</strong> * <p>cn-shenzhen</p> */ @NameInMap("RegionId") public String regionId; /** * <strong>example:</strong> * <p>1631172094000</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryCloudRecordVideoResponseBodyVideoList build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoResponseBodyVideoList self = new QueryCloudRecordVideoResponseBodyVideoList(); return TeaModel.build(map, self); } public QueryCloudRecordVideoResponseBodyVideoList setDuration(Long duration) { this.duration = duration; return this; } public Long getDuration() { return this.duration; } public QueryCloudRecordVideoResponseBodyVideoList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryCloudRecordVideoResponseBodyVideoList setFileSize(Long fileSize) { this.fileSize = fileSize; return this; } public Long getFileSize() { return this.fileSize; } public QueryCloudRecordVideoResponseBodyVideoList setMediaId(String mediaId) { this.mediaId = mediaId; return this; } public String getMediaId() { return this.mediaId; } public QueryCloudRecordVideoResponseBodyVideoList setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public QueryCloudRecordVideoResponseBodyVideoList setRecordType(Long recordType) { this.recordType = recordType; return this; } public Long getRecordType() { return this.recordType; } public QueryCloudRecordVideoResponseBodyVideoList setRegionId(String regionId) { this.regionId = regionId; return this; } public String getRegionId() { return this.regionId; } public QueryCloudRecordVideoResponseBodyVideoList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryCloudRecordVideoResponseBodyVideoList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryCloudRecordVideoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryCloudRecordVideoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoShrinkHeaders self = new QueryCloudRecordVideoShrinkHeaders(); return TeaModel.build(map, self); } public QueryCloudRecordVideoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryCloudRecordVideoShrinkHeaders 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/QueryCloudRecordVideoShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryCloudRecordVideoShrinkRequest extends TeaModel { @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryCloudRecordVideoShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryCloudRecordVideoShrinkRequest self = new QueryCloudRecordVideoShrinkRequest(); return TeaModel.build(map, self); } public QueryCloudRecordVideoShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public QueryCloudRecordVideoShrinkRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceInfoByRoomCodeHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryConferenceInfoByRoomCodeHeadersAccountContext accountContext; public static QueryConferenceInfoByRoomCodeHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeHeaders self = new QueryConferenceInfoByRoomCodeHeaders(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceInfoByRoomCodeHeaders setAccountContext(QueryConferenceInfoByRoomCodeHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryConferenceInfoByRoomCodeHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryConferenceInfoByRoomCodeHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryConferenceInfoByRoomCodeHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeHeadersAccountContext self = new QueryConferenceInfoByRoomCodeHeadersAccountContext(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeHeadersAccountContext 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/QueryConferenceInfoByRoomCodeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeRequest extends TeaModel { @NameInMap("TenantContext") public QueryConferenceInfoByRoomCodeRequestTenantContext tenantContext; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("maxResults") public Integer maxResults; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("nextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>583 480 813</p> */ @NameInMap("roomCode") public String roomCode; public static QueryConferenceInfoByRoomCodeRequest build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeRequest self = new QueryConferenceInfoByRoomCodeRequest(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeRequest setTenantContext(QueryConferenceInfoByRoomCodeRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryConferenceInfoByRoomCodeRequestTenantContext getTenantContext() { return this.tenantContext; } public QueryConferenceInfoByRoomCodeRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryConferenceInfoByRoomCodeRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceInfoByRoomCodeRequest setRoomCode(String roomCode) { this.roomCode = roomCode; return this; } public String getRoomCode() { return this.roomCode; } public static class QueryConferenceInfoByRoomCodeRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static QueryConferenceInfoByRoomCodeRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeRequestTenantContext self = new QueryConferenceInfoByRoomCodeRequestTenantContext(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeRequestTenantContext 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/QueryConferenceInfoByRoomCodeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryConferenceInfoByRoomCodeResponseBody body; public static QueryConferenceInfoByRoomCodeResponse build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeResponse self = new QueryConferenceInfoByRoomCodeResponse(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryConferenceInfoByRoomCodeResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryConferenceInfoByRoomCodeResponse setBody(QueryConferenceInfoByRoomCodeResponseBody body) { this.body = body; return this; } public QueryConferenceInfoByRoomCodeResponseBody 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/QueryConferenceInfoByRoomCodeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>[]</p> */ @NameInMap("conferenceList") public java.util.List<QueryConferenceInfoByRoomCodeResponseBodyConferenceList> conferenceList; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("dingtalkRequestId") public String dingtalkRequestId; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("hasMore") public Boolean hasMore; /** * <strong>example:</strong> * <p>1296</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>20</p> */ @NameInMap("totalCount") public Integer totalCount; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("vendorRequestId") public String vendorRequestId; /** * <strong>example:</strong> * <p>dingtalk</p> */ @NameInMap("vendorType") public String vendorType; public static QueryConferenceInfoByRoomCodeResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeResponseBody self = new QueryConferenceInfoByRoomCodeResponseBody(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeResponseBody setConferenceList(java.util.List<QueryConferenceInfoByRoomCodeResponseBodyConferenceList> conferenceList) { this.conferenceList = conferenceList; return this; } public java.util.List<QueryConferenceInfoByRoomCodeResponseBodyConferenceList> getConferenceList() { return this.conferenceList; } public QueryConferenceInfoByRoomCodeResponseBody setDingtalkRequestId(String dingtalkRequestId) { this.dingtalkRequestId = dingtalkRequestId; return this; } public String getDingtalkRequestId() { return this.dingtalkRequestId; } public QueryConferenceInfoByRoomCodeResponseBody setHasMore(Boolean hasMore) { this.hasMore = hasMore; return this; } public Boolean getHasMore() { return this.hasMore; } public QueryConferenceInfoByRoomCodeResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceInfoByRoomCodeResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryConferenceInfoByRoomCodeResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } public QueryConferenceInfoByRoomCodeResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public QueryConferenceInfoByRoomCodeResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class QueryConferenceInfoByRoomCodeResponseBodyConferenceList extends TeaModel { /** * <strong>example:</strong> * <p>3</p> */ @NameInMap("BizType") public String bizType; /** * <strong>example:</strong> * <p>1000</p> */ @NameInMap("ConfDuration") public Long confDuration; /** * <strong>example:</strong> * <p>636cf59f2b032f014ae32902</p> */ @NameInMap("ConferenceId") public String conferenceId; /** * <strong>example:</strong> * <p>527079</p> */ @NameInMap("CreatorId") public String creatorId; @NameInMap("CreatorNick") public String creatorNick; /** * <strong>example:</strong> * <p>1668087732000</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p>https//:xxx</p> */ @NameInMap("ExternalLinkUrl") public String externalLinkUrl; /** * <strong>example:</strong> * <p>123456789</p> */ @NameInMap("RoomCode") public String roomCode; /** * <strong>example:</strong> * <p>2d79cbde-b9d8-4256-9788-78b05834944e</p> */ @NameInMap("ScheduleConferenceId") public String scheduleConferenceId; /** * <strong>example:</strong> * <p>1668087731000</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("Status") public Integer status; @NameInMap("Title") public String title; public static QueryConferenceInfoByRoomCodeResponseBodyConferenceList build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeResponseBodyConferenceList self = new QueryConferenceInfoByRoomCodeResponseBodyConferenceList(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setBizType(String bizType) { this.bizType = bizType; return this; } public String getBizType() { return this.bizType; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setConfDuration(Long confDuration) { this.confDuration = confDuration; return this; } public Long getConfDuration() { return this.confDuration; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setCreatorNick(String creatorNick) { this.creatorNick = creatorNick; return this; } public String getCreatorNick() { return this.creatorNick; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setExternalLinkUrl(String externalLinkUrl) { this.externalLinkUrl = externalLinkUrl; return this; } public String getExternalLinkUrl() { return this.externalLinkUrl; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setRoomCode(String roomCode) { this.roomCode = roomCode; return this; } public String getRoomCode() { return this.roomCode; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setScheduleConferenceId(String scheduleConferenceId) { this.scheduleConferenceId = scheduleConferenceId; return this; } public String getScheduleConferenceId() { return this.scheduleConferenceId; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setStatus(Integer status) { this.status = status; return this; } public Integer getStatus() { return this.status; } public QueryConferenceInfoByRoomCodeResponseBodyConferenceList setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceInfoByRoomCodeShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryConferenceInfoByRoomCodeShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeShrinkHeaders self = new QueryConferenceInfoByRoomCodeShrinkHeaders(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceInfoByRoomCodeShrinkHeaders 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/QueryConferenceInfoByRoomCodeShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoByRoomCodeShrinkRequest extends TeaModel { @NameInMap("TenantContext") public String tenantContextShrink; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("maxResults") public Integer maxResults; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("nextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>583 480 813</p> */ @NameInMap("roomCode") public String roomCode; public static QueryConferenceInfoByRoomCodeShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoByRoomCodeShrinkRequest self = new QueryConferenceInfoByRoomCodeShrinkRequest(); return TeaModel.build(map, self); } public QueryConferenceInfoByRoomCodeShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public QueryConferenceInfoByRoomCodeShrinkRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryConferenceInfoByRoomCodeShrinkRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceInfoByRoomCodeShrinkRequest setRoomCode(String roomCode) { this.roomCode = roomCode; return this; } public String getRoomCode() { return this.roomCode; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceInfoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryConferenceInfoHeadersAccountContext accountContext; public static QueryConferenceInfoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoHeaders self = new QueryConferenceInfoHeaders(); return TeaModel.build(map, self); } public QueryConferenceInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceInfoHeaders setAccountContext(QueryConferenceInfoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryConferenceInfoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryConferenceInfoHeadersAccountContext extends TeaModel { /** * <strong>example:</strong> * <p>208579</p> */ @NameInMap("accountId") public String accountId; public static QueryConferenceInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoHeadersAccountContext self = new QueryConferenceInfoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryConferenceInfoHeadersAccountContext 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/QueryConferenceInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>607452e01401526ee39609e1</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryConferenceInfoRequest build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoRequest self = new QueryConferenceInfoRequest(); return TeaModel.build(map, self); } public QueryConferenceInfoRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryConferenceInfoResponseBody body; public static QueryConferenceInfoResponse build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoResponse self = new QueryConferenceInfoResponse(); return TeaModel.build(map, self); } public QueryConferenceInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryConferenceInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryConferenceInfoResponse setBody(QueryConferenceInfoResponseBody body) { this.body = body; return this; } public QueryConferenceInfoResponseBody 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/QueryConferenceInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoResponseBody extends TeaModel { @NameInMap("confInfo") public QueryConferenceInfoResponseBodyConfInfo confInfo; /** * <p>requestId</p> * * <strong>example:</strong> * <p>4248DCC9-785F-5A14-8BE0-830FD52E1261</p> */ @NameInMap("requestId") public String requestId; public static QueryConferenceInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoResponseBody self = new QueryConferenceInfoResponseBody(); return TeaModel.build(map, self); } public QueryConferenceInfoResponseBody setConfInfo(QueryConferenceInfoResponseBodyConfInfo confInfo) { this.confInfo = confInfo; return this; } public QueryConferenceInfoResponseBodyConfInfo getConfInfo() { return this.confInfo; } public QueryConferenceInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class QueryConferenceInfoResponseBodyConfInfo extends TeaModel { /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("ActiveNum") public Integer activeNum; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("AttendNum") public Integer attendNum; /** * <strong>example:</strong> * <p>1000000</p> */ @NameInMap("ConfDuration") public Long confDuration; /** * <strong>example:</strong> * <p>607452e01401526ee39609e1</p> */ @NameInMap("ConferenceId") public String conferenceId; /** * <strong>example:</strong> * <p>208579</p> */ @NameInMap("CreatorId") public String creatorId; @NameInMap("CreatorNick") public String creatorNick; /** * <strong>example:</strong> * <p>1663294270000</p> */ @NameInMap("EndTime") public Long endTime; /** * <strong>example:</strong> * <p><a href="https://meeting.dingtalk.com/app?roomCode=42726xxx&token=1_7ac9xxx">https://meeting.dingtalk.com/app?roomCode=42726xxx&amp;token=1_7ac9xxx</a></p> */ @NameInMap("ExternalLinkUrl") public String externalLinkUrl; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("InvitedNum") public Integer invitedNum; /** * <strong>example:</strong> * <p>4272xxxxx</p> */ @NameInMap("RoomCode") public String roomCode; /** * <strong>example:</strong> * <p>1663293270000</p> */ @NameInMap("StartTime") public Long startTime; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("Status") public Integer status; @NameInMap("Title") public String title; public static QueryConferenceInfoResponseBodyConfInfo build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoResponseBodyConfInfo self = new QueryConferenceInfoResponseBodyConfInfo(); return TeaModel.build(map, self); } public QueryConferenceInfoResponseBodyConfInfo setActiveNum(Integer activeNum) { this.activeNum = activeNum; return this; } public Integer getActiveNum() { return this.activeNum; } public QueryConferenceInfoResponseBodyConfInfo setAttendNum(Integer attendNum) { this.attendNum = attendNum; return this; } public Integer getAttendNum() { return this.attendNum; } public QueryConferenceInfoResponseBodyConfInfo setConfDuration(Long confDuration) { this.confDuration = confDuration; return this; } public Long getConfDuration() { return this.confDuration; } public QueryConferenceInfoResponseBodyConfInfo setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public QueryConferenceInfoResponseBodyConfInfo setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public QueryConferenceInfoResponseBodyConfInfo setCreatorNick(String creatorNick) { this.creatorNick = creatorNick; return this; } public String getCreatorNick() { return this.creatorNick; } public QueryConferenceInfoResponseBodyConfInfo setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryConferenceInfoResponseBodyConfInfo setExternalLinkUrl(String externalLinkUrl) { this.externalLinkUrl = externalLinkUrl; return this; } public String getExternalLinkUrl() { return this.externalLinkUrl; } public QueryConferenceInfoResponseBodyConfInfo setInvitedNum(Integer invitedNum) { this.invitedNum = invitedNum; return this; } public Integer getInvitedNum() { return this.invitedNum; } public QueryConferenceInfoResponseBodyConfInfo setRoomCode(String roomCode) { this.roomCode = roomCode; return this; } public String getRoomCode() { return this.roomCode; } public QueryConferenceInfoResponseBodyConfInfo setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryConferenceInfoResponseBodyConfInfo setStatus(Integer status) { this.status = status; return this; } public Integer getStatus() { return this.status; } public QueryConferenceInfoResponseBodyConfInfo setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceInfoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceInfoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryConferenceInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceInfoShrinkHeaders self = new QueryConferenceInfoShrinkHeaders(); return TeaModel.build(map, self); } public QueryConferenceInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceInfoShrinkHeaders 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/QueryConferenceMembersHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryConferenceMembersHeadersAccountContext accountContext; public static QueryConferenceMembersHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersHeaders self = new QueryConferenceMembersHeaders(); return TeaModel.build(map, self); } public QueryConferenceMembersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceMembersHeaders setAccountContext(QueryConferenceMembersHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryConferenceMembersHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryConferenceMembersHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryConferenceMembersHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersHeadersAccountContext self = new QueryConferenceMembersHeadersAccountContext(); return TeaModel.build(map, self); } public QueryConferenceMembersHeadersAccountContext 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/QueryConferenceMembersRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersRequest extends TeaModel { /** * <strong>example:</strong> * <p>300</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123000000</p> */ @NameInMap("NextToken") public String nextToken; @NameInMap("TenantContext") public QueryConferenceMembersRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryConferenceMembersRequest build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersRequest self = new QueryConferenceMembersRequest(); return TeaModel.build(map, self); } public QueryConferenceMembersRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryConferenceMembersRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceMembersRequest setTenantContext(QueryConferenceMembersRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryConferenceMembersRequestTenantContext getTenantContext() { return this.tenantContext; } public QueryConferenceMembersRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public static class QueryConferenceMembersRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryConferenceMembersRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersRequestTenantContext self = new QueryConferenceMembersRequestTenantContext(); return TeaModel.build(map, self); } public QueryConferenceMembersRequestTenantContext 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/QueryConferenceMembersResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryConferenceMembersResponseBody body; public static QueryConferenceMembersResponse build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersResponse self = new QueryConferenceMembersResponse(); return TeaModel.build(map, self); } public QueryConferenceMembersResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryConferenceMembersResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryConferenceMembersResponse setBody(QueryConferenceMembersResponseBody body) { this.body = body; return this; } public QueryConferenceMembersResponseBody 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/QueryConferenceMembersResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersResponseBody extends TeaModel { @NameInMap("memberModels") public java.util.List<QueryConferenceMembersResponseBodyMemberModels> memberModels; /** * <strong>example:</strong> * <p>123000000</p> */ @NameInMap("nextToken") public String nextToken; /** * <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("totalCount") public Integer totalCount; public static QueryConferenceMembersResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersResponseBody self = new QueryConferenceMembersResponseBody(); return TeaModel.build(map, self); } public QueryConferenceMembersResponseBody setMemberModels(java.util.List<QueryConferenceMembersResponseBodyMemberModels> memberModels) { this.memberModels = memberModels; return this; } public java.util.List<QueryConferenceMembersResponseBodyMemberModels> getMemberModels() { return this.memberModels; } public QueryConferenceMembersResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceMembersResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryConferenceMembersResponseBody setTotalCount(Integer totalCount) { this.totalCount = totalCount; return this; } public Integer getTotalCount() { return this.totalCount; } public static class QueryConferenceMembersResponseBodyMemberModels extends TeaModel { /** * <strong>example:</strong> * <p>6</p> */ @NameInMap("AttendStatus") public Integer attendStatus; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("CoHost") public Boolean coHost; /** * <strong>example:</strong> * <p>6323dxxxxx</p> */ @NameInMap("ConferenceId") public String conferenceId; /** * <strong>example:</strong> * <p>10000</p> */ @NameInMap("Duration") public Long duration; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("Host") public Boolean host; /** * <strong>example:</strong> * <p>1663293270000</p> */ @NameInMap("JoinTime") public Long joinTime; /** * <strong>example:</strong> * <p>1663293280000</p> */ @NameInMap("LeaveTime") public Long leaveTime; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("OuterOrgMember") public Boolean outerOrgMember; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("PstnJoin") public Boolean pstnJoin; /** * <strong>example:</strong> * <p>-12345</p> */ @NameInMap("UserId") public String userId; /** * <strong>example:</strong> * <p>小钉</p> */ @NameInMap("UserNick") public String userNick; public static QueryConferenceMembersResponseBodyMemberModels build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersResponseBodyMemberModels self = new QueryConferenceMembersResponseBodyMemberModels(); return TeaModel.build(map, self); } public QueryConferenceMembersResponseBodyMemberModels setAttendStatus(Integer attendStatus) { this.attendStatus = attendStatus; return this; } public Integer getAttendStatus() { return this.attendStatus; } public QueryConferenceMembersResponseBodyMemberModels setCoHost(Boolean coHost) { this.coHost = coHost; return this; } public Boolean getCoHost() { return this.coHost; } public QueryConferenceMembersResponseBodyMemberModels setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } public QueryConferenceMembersResponseBodyMemberModels setDuration(Long duration) { this.duration = duration; return this; } public Long getDuration() { return this.duration; } public QueryConferenceMembersResponseBodyMemberModels setHost(Boolean host) { this.host = host; return this; } public Boolean getHost() { return this.host; } public QueryConferenceMembersResponseBodyMemberModels setJoinTime(Long joinTime) { this.joinTime = joinTime; return this; } public Long getJoinTime() { return this.joinTime; } public QueryConferenceMembersResponseBodyMemberModels setLeaveTime(Long leaveTime) { this.leaveTime = leaveTime; return this; } public Long getLeaveTime() { return this.leaveTime; } public QueryConferenceMembersResponseBodyMemberModels setOuterOrgMember(Boolean outerOrgMember) { this.outerOrgMember = outerOrgMember; return this; } public Boolean getOuterOrgMember() { return this.outerOrgMember; } public QueryConferenceMembersResponseBodyMemberModels setPstnJoin(Boolean pstnJoin) { this.pstnJoin = pstnJoin; return this; } public Boolean getPstnJoin() { return this.pstnJoin; } public QueryConferenceMembersResponseBodyMemberModels setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public QueryConferenceMembersResponseBodyMemberModels setUserNick(String userNick) { this.userNick = userNick; return this; } public String getUserNick() { return this.userNick; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryConferenceMembersShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryConferenceMembersShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersShrinkHeaders self = new QueryConferenceMembersShrinkHeaders(); return TeaModel.build(map, self); } public QueryConferenceMembersShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryConferenceMembersShrinkHeaders 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/QueryConferenceMembersShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryConferenceMembersShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>300</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>123000000</p> */ @NameInMap("NextToken") public String nextToken; @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>61289fxxx</p> */ @NameInMap("conferenceId") public String conferenceId; public static QueryConferenceMembersShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryConferenceMembersShrinkRequest self = new QueryConferenceMembersShrinkRequest(); return TeaModel.build(map, self); } public QueryConferenceMembersShrinkRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryConferenceMembersShrinkRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public QueryConferenceMembersShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public QueryConferenceMembersShrinkRequest setConferenceId(String conferenceId) { this.conferenceId = conferenceId; return this; } public String getConferenceId() { return this.conferenceId; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryDentriesInfoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryDentriesInfoHeadersAccountContext accountContext; public static QueryDentriesInfoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoHeaders self = new QueryDentriesInfoHeaders(); return TeaModel.build(map, self); } public QueryDentriesInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryDentriesInfoHeaders setAccountContext(QueryDentriesInfoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryDentriesInfoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryDentriesInfoHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryDentriesInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoHeadersAccountContext self = new QueryDentriesInfoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryDentriesInfoHeadersAccountContext 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/QueryDentriesInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoRequest extends TeaModel { @NameInMap("AppIdsForAppProperties") public java.util.List<String> appIdsForAppProperties; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>140901622636</p> */ @NameInMap("DentryId") public String dentryId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>22443475065</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public QueryDentriesInfoRequestTenantContext tenantContext; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>urv3ZIAtcmmIgQzHq08YcAiEiE</p> */ @NameInMap("UnionId") public String unionId; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("WithThumbnail") public Boolean withThumbnail; public static QueryDentriesInfoRequest build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoRequest self = new QueryDentriesInfoRequest(); return TeaModel.build(map, self); } public QueryDentriesInfoRequest setAppIdsForAppProperties(java.util.List<String> appIdsForAppProperties) { this.appIdsForAppProperties = appIdsForAppProperties; return this; } public java.util.List<String> getAppIdsForAppProperties() { return this.appIdsForAppProperties; } public QueryDentriesInfoRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentriesInfoRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentriesInfoRequest setTenantContext(QueryDentriesInfoRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryDentriesInfoRequestTenantContext getTenantContext() { return this.tenantContext; } public QueryDentriesInfoRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public QueryDentriesInfoRequest setWithThumbnail(Boolean withThumbnail) { this.withThumbnail = withThumbnail; return this; } public Boolean getWithThumbnail() { return this.withThumbnail; } public static class QueryDentriesInfoRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static QueryDentriesInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoRequestTenantContext self = new QueryDentriesInfoRequestTenantContext(); return TeaModel.build(map, self); } public QueryDentriesInfoRequestTenantContext 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/QueryDentriesInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryDentriesInfoResponseBody body; public static QueryDentriesInfoResponse build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoResponse self = new QueryDentriesInfoResponse(); return TeaModel.build(map, self); } public QueryDentriesInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryDentriesInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryDentriesInfoResponse setBody(QueryDentriesInfoResponseBody body) { this.body = body; return this; } public QueryDentriesInfoResponseBody 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/QueryDentriesInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoResponseBody extends TeaModel { @NameInMap("Dentry") public QueryDentriesInfoResponseBodyDentry dentry; /** * <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 QueryDentriesInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoResponseBody self = new QueryDentriesInfoResponseBody(); return TeaModel.build(map, self); } public QueryDentriesInfoResponseBody setDentry(QueryDentriesInfoResponseBodyDentry dentry) { this.dentry = dentry; return this; } public QueryDentriesInfoResponseBodyDentry getDentry() { return this.dentry; } public QueryDentriesInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryDentriesInfoResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public QueryDentriesInfoResponseBody setVendorType(String vendorType) { this.vendorType = vendorType; return this; } public String getVendorType() { return this.vendorType; } public static class QueryDentriesInfoResponseBodyDentryProperties extends TeaModel { /** * <strong>example:</strong> * <p>True</p> */ @NameInMap("ReadOnly") public Boolean readOnly; public static QueryDentriesInfoResponseBodyDentryProperties build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoResponseBodyDentryProperties self = new QueryDentriesInfoResponseBodyDentryProperties(); return TeaModel.build(map, self); } public QueryDentriesInfoResponseBodyDentryProperties setReadOnly(Boolean readOnly) { this.readOnly = readOnly; return this; } public Boolean getReadOnly() { return this.readOnly; } } public static class QueryDentriesInfoResponseBodyDentryThumbnail extends TeaModel { /** * <strong>example:</strong> * <p>720</p> */ @NameInMap("Height") public Integer height; /** * <strong>example:</strong> * <p>xxx</p> */ @NameInMap("Url") public String url; /** * <strong>example:</strong> * <p>1920</p> */ @NameInMap("Width") public Integer width; public static QueryDentriesInfoResponseBodyDentryThumbnail build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoResponseBodyDentryThumbnail self = new QueryDentriesInfoResponseBodyDentryThumbnail(); return TeaModel.build(map, self); } public QueryDentriesInfoResponseBodyDentryThumbnail setHeight(Integer height) { this.height = height; return this; } public Integer getHeight() { return this.height; } public QueryDentriesInfoResponseBodyDentryThumbnail setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public QueryDentriesInfoResponseBodyDentryThumbnail setWidth(Integer width) { this.width = width; return this; } public Integer getWidth() { return this.width; } } public static class QueryDentriesInfoResponseBodyDentry extends TeaModel { @NameInMap("AppProperties") public java.util.Map<String, java.util.List<DentryAppPropertiesValue>> appProperties; /** * <strong>example:</strong> * <p>2025-03-26T02:19:35Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>qt8bGiSa7WnHKeRPtMuoiSJwiE</p> */ @NameInMap("CreatorId") public String creatorId; /** * <strong>example:</strong> * <p>txt</p> */ @NameInMap("Extension") public String extension; /** * <strong>example:</strong> * <p>140901622636</p> */ @NameInMap("Id") public String id; @NameInMap("ModifiedTime") public String modifiedTime; /** * <strong>example:</strong> * <p>qt8bGiSa7WnHKeRPtMuoiSJwiE</p> */ @NameInMap("ModifierId") public String modifierId; @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; @NameInMap("Path") public String path; @NameInMap("Properties") public QueryDentriesInfoResponseBodyDentryProperties properties; /** * <strong>example:</strong> * <p>512</p> */ @NameInMap("Size") public Long size; /** * <strong>example:</strong> * <p>22443475065</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 QueryDentriesInfoResponseBodyDentryThumbnail thumbnail; /** * <strong>example:</strong> * <p>FILE</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>1716258459684</p> */ @NameInMap("Uuid") public String uuid; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Version") public Long version; public static QueryDentriesInfoResponseBodyDentry build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoResponseBodyDentry self = new QueryDentriesInfoResponseBodyDentry(); return TeaModel.build(map, self); } public QueryDentriesInfoResponseBodyDentry setAppProperties(java.util.Map<String, java.util.List<DentryAppPropertiesValue>> appProperties) { this.appProperties = appProperties; return this; } public java.util.Map<String, java.util.List<DentryAppPropertiesValue>> getAppProperties() { return this.appProperties; } public QueryDentriesInfoResponseBodyDentry setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public QueryDentriesInfoResponseBodyDentry setCreatorId(String creatorId) { this.creatorId = creatorId; return this; } public String getCreatorId() { return this.creatorId; } public QueryDentriesInfoResponseBodyDentry setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public QueryDentriesInfoResponseBodyDentry setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public QueryDentriesInfoResponseBodyDentry setModifiedTime(String modifiedTime) { this.modifiedTime = modifiedTime; return this; } public String getModifiedTime() { return this.modifiedTime; } public QueryDentriesInfoResponseBodyDentry setModifierId(String modifierId) { this.modifierId = modifierId; return this; } public String getModifierId() { return this.modifierId; } public QueryDentriesInfoResponseBodyDentry setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentriesInfoResponseBodyDentry setParentId(String parentId) { this.parentId = parentId; return this; } public String getParentId() { return this.parentId; } public QueryDentriesInfoResponseBodyDentry setPartitionType(String partitionType) { this.partitionType = partitionType; return this; } public String getPartitionType() { return this.partitionType; } public QueryDentriesInfoResponseBodyDentry setPath(String path) { this.path = path; return this; } public String getPath() { return this.path; } public QueryDentriesInfoResponseBodyDentry setProperties(QueryDentriesInfoResponseBodyDentryProperties properties) { this.properties = properties; return this; } public QueryDentriesInfoResponseBodyDentryProperties getProperties() { return this.properties; } public QueryDentriesInfoResponseBodyDentry setSize(Long size) { this.size = size; return this; } public Long getSize() { return this.size; } public QueryDentriesInfoResponseBodyDentry setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentriesInfoResponseBodyDentry setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public QueryDentriesInfoResponseBodyDentry setStorageDriver(String storageDriver) { this.storageDriver = storageDriver; return this; } public String getStorageDriver() { return this.storageDriver; } public QueryDentriesInfoResponseBodyDentry setThumbnail(QueryDentriesInfoResponseBodyDentryThumbnail thumbnail) { this.thumbnail = thumbnail; return this; } public QueryDentriesInfoResponseBodyDentryThumbnail getThumbnail() { return this.thumbnail; } public QueryDentriesInfoResponseBodyDentry setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public QueryDentriesInfoResponseBodyDentry setUuid(String uuid) { this.uuid = uuid; return this; } public String getUuid() { return this.uuid; } public QueryDentriesInfoResponseBodyDentry 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/QueryDentriesInfoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryDentriesInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoShrinkHeaders self = new QueryDentriesInfoShrinkHeaders(); return TeaModel.build(map, self); } public QueryDentriesInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryDentriesInfoShrinkHeaders 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/QueryDentriesInfoShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentriesInfoShrinkRequest extends TeaModel { @NameInMap("AppIdsForAppProperties") public String appIdsForAppPropertiesShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>140901622636</p> */ @NameInMap("DentryId") public String dentryId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>22443475065</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public String tenantContextShrink; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>urv3ZIAtcmmIgQzHq08YcAiEiE</p> */ @NameInMap("UnionId") public String unionId; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("WithThumbnail") public Boolean withThumbnail; public static QueryDentriesInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryDentriesInfoShrinkRequest self = new QueryDentriesInfoShrinkRequest(); return TeaModel.build(map, self); } public QueryDentriesInfoShrinkRequest setAppIdsForAppPropertiesShrink(String appIdsForAppPropertiesShrink) { this.appIdsForAppPropertiesShrink = appIdsForAppPropertiesShrink; return this; } public String getAppIdsForAppPropertiesShrink() { return this.appIdsForAppPropertiesShrink; } public QueryDentriesInfoShrinkRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentriesInfoShrinkRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentriesInfoShrinkRequest setTenantContextShrink(String tenantContextShrink) { this.tenantContextShrink = tenantContextShrink; return this; } public String getTenantContextShrink() { return this.tenantContextShrink; } public QueryDentriesInfoShrinkRequest setUnionId(String unionId) { this.unionId = unionId; return this; } public String getUnionId() { return this.unionId; } public QueryDentriesInfoShrinkRequest 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/QueryDentryHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryDentryHeadersAccountContext accountContext; public static QueryDentryHeaders build(java.util.Map<String, ?> map) throws Exception { QueryDentryHeaders self = new QueryDentryHeaders(); return TeaModel.build(map, self); } public QueryDentryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryDentryHeaders setAccountContext(QueryDentryHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryDentryHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryDentryHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryDentryHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryDentryHeadersAccountContext self = new QueryDentryHeadersAccountContext(); return TeaModel.build(map, self); } public QueryDentryHeadersAccountContext 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/QueryDentryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>xxx</p> */ @NameInMap("DentryId") public String dentryId; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IncludeSpace") public Boolean includeSpace; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>space-fxhb96vuddz8htqt</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public QueryDentryRequestTenantContext tenantContext; public static QueryDentryRequest build(java.util.Map<String, ?> map) throws Exception { QueryDentryRequest self = new QueryDentryRequest(); return TeaModel.build(map, self); } public QueryDentryRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentryRequest setIncludeSpace(Boolean includeSpace) { this.includeSpace = includeSpace; return this; } public Boolean getIncludeSpace() { return this.includeSpace; } public QueryDentryRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentryRequest setTenantContext(QueryDentryRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryDentryRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryDentryRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryDentryRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryDentryRequestTenantContext self = new QueryDentryRequestTenantContext(); return TeaModel.build(map, self); } public QueryDentryRequestTenantContext 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/QueryDentryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryDentryResponseBody body; public static QueryDentryResponse build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponse self = new QueryDentryResponse(); return TeaModel.build(map, self); } public QueryDentryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryDentryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryDentryResponse setBody(QueryDentryResponseBody body) { this.body = body; return this; } public QueryDentryResponseBody 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/QueryDentryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("contentType") public String contentType; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("createdTime") public Long createdTime; @NameInMap("creator") public QueryDentryResponseBodyCreator creator; /** * <strong>example:</strong> * <p>abc</p> */ @NameInMap("dentryId") public String dentryId; /** * <strong>example:</strong> * <p>file</p> */ @NameInMap("dentryType") public String dentryType; /** * <strong>example:</strong> * <p>cdefg</p> */ @NameInMap("dentryUuid") public String dentryUuid; /** * <strong>example:</strong> * <p>aabbcc</p> */ @NameInMap("docKey") public String docKey; /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("extension") public String extension; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("hasChildren") public Boolean hasChildren; @NameInMap("linkSourceInfo") public QueryDentryResponseBodyLinkSourceInfo linkSourceInfo; /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("name") public String name; /** * <strong>example:</strong> * <p>测试组织/测试知识库/abc</p> */ @NameInMap("path") public String path; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("space") public QueryDentryResponseBodySpace space; /** * <strong>example:</strong> * <p>bcd</p> */ @NameInMap("spaceId") public String spaceId; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("updatedTime") public Long updatedTime; @NameInMap("updater") public QueryDentryResponseBodyUpdater updater; /** * <strong>example:</strong> * <p><a href="https://xxx.yy">https://xxx.yy</a></p> */ @NameInMap("url") public String url; @NameInMap("visitorInfo") public QueryDentryResponseBodyVisitorInfo visitorInfo; public static QueryDentryResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBody self = new QueryDentryResponseBody(); return TeaModel.build(map, self); } public QueryDentryResponseBody setContentType(String contentType) { this.contentType = contentType; return this; } public String getContentType() { return this.contentType; } public QueryDentryResponseBody setCreatedTime(Long createdTime) { this.createdTime = createdTime; return this; } public Long getCreatedTime() { return this.createdTime; } public QueryDentryResponseBody setCreator(QueryDentryResponseBodyCreator creator) { this.creator = creator; return this; } public QueryDentryResponseBodyCreator getCreator() { return this.creator; } public QueryDentryResponseBody setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentryResponseBody setDentryType(String dentryType) { this.dentryType = dentryType; return this; } public String getDentryType() { return this.dentryType; } public QueryDentryResponseBody setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public QueryDentryResponseBody setDocKey(String docKey) { this.docKey = docKey; return this; } public String getDocKey() { return this.docKey; } public QueryDentryResponseBody setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public QueryDentryResponseBody setHasChildren(Boolean hasChildren) { this.hasChildren = hasChildren; return this; } public Boolean getHasChildren() { return this.hasChildren; } public QueryDentryResponseBody setLinkSourceInfo(QueryDentryResponseBodyLinkSourceInfo linkSourceInfo) { this.linkSourceInfo = linkSourceInfo; return this; } public QueryDentryResponseBodyLinkSourceInfo getLinkSourceInfo() { return this.linkSourceInfo; } public QueryDentryResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBody setPath(String path) { this.path = path; return this; } public String getPath() { return this.path; } public QueryDentryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryDentryResponseBody setSpace(QueryDentryResponseBodySpace space) { this.space = space; return this; } public QueryDentryResponseBodySpace getSpace() { return this.space; } public QueryDentryResponseBody setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentryResponseBody setUpdatedTime(Long updatedTime) { this.updatedTime = updatedTime; return this; } public Long getUpdatedTime() { return this.updatedTime; } public QueryDentryResponseBody setUpdater(QueryDentryResponseBodyUpdater updater) { this.updater = updater; return this; } public QueryDentryResponseBodyUpdater getUpdater() { return this.updater; } public QueryDentryResponseBody setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public QueryDentryResponseBody setVisitorInfo(QueryDentryResponseBodyVisitorInfo visitorInfo) { this.visitorInfo = visitorInfo; return this; } public QueryDentryResponseBodyVisitorInfo getVisitorInfo() { return this.visitorInfo; } public static class QueryDentryResponseBodyCreator extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryDentryResponseBodyCreator build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodyCreator self = new QueryDentryResponseBodyCreator(); return TeaModel.build(map, self); } public QueryDentryResponseBodyCreator setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodyCreator setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class QueryDentryResponseBodyLinkSourceInfoIconUrl extends TeaModel { /** * <strong>example:</strong> * <p>gh</p> */ @NameInMap("Line") public String line; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Small") public String small; public static QueryDentryResponseBodyLinkSourceInfoIconUrl build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodyLinkSourceInfoIconUrl self = new QueryDentryResponseBodyLinkSourceInfoIconUrl(); return TeaModel.build(map, self); } public QueryDentryResponseBodyLinkSourceInfoIconUrl setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public QueryDentryResponseBodyLinkSourceInfoIconUrl setSmall(String small) { this.small = small; return this; } public String getSmall() { return this.small; } } public static class QueryDentryResponseBodyLinkSourceInfo extends TeaModel { /** * <strong>example:</strong> * <p>docx</p> */ @NameInMap("Extension") public String extension; @NameInMap("IconUrl") public QueryDentryResponseBodyLinkSourceInfoIconUrl iconUrl; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Id") public String id; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("LinkType") public Long linkType; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("SpaceId") public String spaceId; public static QueryDentryResponseBodyLinkSourceInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodyLinkSourceInfo self = new QueryDentryResponseBodyLinkSourceInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodyLinkSourceInfo setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public QueryDentryResponseBodyLinkSourceInfo setIconUrl(QueryDentryResponseBodyLinkSourceInfoIconUrl iconUrl) { this.iconUrl = iconUrl; return this; } public QueryDentryResponseBodyLinkSourceInfoIconUrl getIconUrl() { return this.iconUrl; } public QueryDentryResponseBodyLinkSourceInfo setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public QueryDentryResponseBodyLinkSourceInfo setLinkType(Long linkType) { this.linkType = linkType; return this; } public Long getLinkType() { return this.linkType; } public QueryDentryResponseBodyLinkSourceInfo setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } } public static class QueryDentryResponseBodySpaceHdIconVO extends TeaModel { /** * <strong>example:</strong> * <p>http://</p> */ @NameInMap("Icon") public String icon; /** * <strong>example:</strong> * <p>type</p> */ @NameInMap("Type") public String type; public static QueryDentryResponseBodySpaceHdIconVO build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceHdIconVO self = new QueryDentryResponseBodySpaceHdIconVO(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceHdIconVO setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public QueryDentryResponseBodySpaceHdIconVO setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class QueryDentryResponseBodySpaceIconVO extends TeaModel { /** * <strong>example:</strong> * <p>http://</p> */ @NameInMap("Icon") public String icon; /** * <strong>example:</strong> * <p>type</p> */ @NameInMap("Type") public String type; public static QueryDentryResponseBodySpaceIconVO build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceIconVO self = new QueryDentryResponseBodySpaceIconVO(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceIconVO setIcon(String icon) { this.icon = icon; return this; } public String getIcon() { return this.icon; } public QueryDentryResponseBodySpaceIconVO setType(String type) { this.type = type; return this; } public String getType() { return this.type; } } public static class QueryDentryResponseBodySpaceOwner extends TeaModel { /** * <strong>example:</strong> * <p>小钉</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryDentryResponseBodySpaceOwner build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceOwner self = new QueryDentryResponseBodySpaceOwner(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceOwner setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodySpaceOwner setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class QueryDentryResponseBodySpaceRecentListCreator extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryDentryResponseBodySpaceRecentListCreator build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListCreator self = new QueryDentryResponseBodySpaceRecentListCreator(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListCreator setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodySpaceRecentListCreator setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl extends TeaModel { /** * <strong>example:</strong> * <p>gh</p> */ @NameInMap("Line") public String line; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Small") public String small; public static QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl self = new QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl setSmall(String small) { this.small = small; return this; } public String getSmall() { return this.small; } } public static class QueryDentryResponseBodySpaceRecentListLinkSourceInfo extends TeaModel { /** * <strong>example:</strong> * <p>docx</p> */ @NameInMap("Extension") public String extension; @NameInMap("IconUrl") public QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl iconUrl; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("Id") public String id; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("LinkType") public Long linkType; /** * <strong>example:</strong> * <p>def</p> */ @NameInMap("SpaceId") public String spaceId; public static QueryDentryResponseBodySpaceRecentListLinkSourceInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListLinkSourceInfo self = new QueryDentryResponseBodySpaceRecentListLinkSourceInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo setIconUrl(QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl iconUrl) { this.iconUrl = iconUrl; return this; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfoIconUrl getIconUrl() { return this.iconUrl; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo setLinkType(Long linkType) { this.linkType = linkType; return this; } public Long getLinkType() { return this.linkType; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } } public static class QueryDentryResponseBodySpaceRecentListStatisticalInfo extends TeaModel { @NameInMap("WordCount") public Long wordCount; public static QueryDentryResponseBodySpaceRecentListStatisticalInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListStatisticalInfo self = new QueryDentryResponseBodySpaceRecentListStatisticalInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListStatisticalInfo setWordCount(Long wordCount) { this.wordCount = wordCount; return this; } public Long getWordCount() { return this.wordCount; } } public static class QueryDentryResponseBodySpaceRecentListUpdater extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryDentryResponseBodySpaceRecentListUpdater build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListUpdater self = new QueryDentryResponseBodySpaceRecentListUpdater(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListUpdater setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodySpaceRecentListUpdater setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class QueryDentryResponseBodySpaceRecentListVisitorInfo extends TeaModel { @NameInMap("DentryActions") public java.util.List<String> dentryActions; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("RoleCode") public String roleCode; @NameInMap("SpaceActions") public java.util.List<String> spaceActions; public static QueryDentryResponseBodySpaceRecentListVisitorInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentListVisitorInfo self = new QueryDentryResponseBodySpaceRecentListVisitorInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentListVisitorInfo setDentryActions(java.util.List<String> dentryActions) { this.dentryActions = dentryActions; return this; } public java.util.List<String> getDentryActions() { return this.dentryActions; } public QueryDentryResponseBodySpaceRecentListVisitorInfo setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public QueryDentryResponseBodySpaceRecentListVisitorInfo setSpaceActions(java.util.List<String> spaceActions) { this.spaceActions = spaceActions; return this; } public java.util.List<String> getSpaceActions() { return this.spaceActions; } } public static class QueryDentryResponseBodySpaceRecentList extends TeaModel { /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("ContentType") public String contentType; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("CreatedTime") public Long createdTime; @NameInMap("Creator") public QueryDentryResponseBodySpaceRecentListCreator creator; /** * <strong>example:</strong> * <p>abc</p> */ @NameInMap("DentryId") public String dentryId; /** * <strong>example:</strong> * <p>file</p> */ @NameInMap("DentryType") public String dentryType; /** * <strong>example:</strong> * <p>cdefg</p> */ @NameInMap("DentryUuid") public String dentryUuid; /** * <strong>example:</strong> * <p>aabbcc</p> */ @NameInMap("DocKey") public String docKey; /** * <strong>example:</strong> * <p>alidoc</p> */ @NameInMap("Extension") public String extension; /** * <strong>example:</strong> * <p>false</p> */ @NameInMap("HasChildren") public Boolean hasChildren; @NameInMap("LinkSourceInfo") public QueryDentryResponseBodySpaceRecentListLinkSourceInfo linkSourceInfo; /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>测试组织/测试知识库/abc</p> */ @NameInMap("Path") public String path; @NameInMap("Space") public Object space; /** * <strong>example:</strong> * <p>bcd</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("StatisticalInfo") public QueryDentryResponseBodySpaceRecentListStatisticalInfo statisticalInfo; /** * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("UpdatedTime") public Long updatedTime; @NameInMap("Updater") public QueryDentryResponseBodySpaceRecentListUpdater updater; /** * <strong>example:</strong> * <p><a href="https://xxx.yy">https://xxx.yy</a></p> */ @NameInMap("Url") public String url; @NameInMap("VisitorInfo") public QueryDentryResponseBodySpaceRecentListVisitorInfo visitorInfo; public static QueryDentryResponseBodySpaceRecentList build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceRecentList self = new QueryDentryResponseBodySpaceRecentList(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceRecentList setContentType(String contentType) { this.contentType = contentType; return this; } public String getContentType() { return this.contentType; } public QueryDentryResponseBodySpaceRecentList setCreatedTime(Long createdTime) { this.createdTime = createdTime; return this; } public Long getCreatedTime() { return this.createdTime; } public QueryDentryResponseBodySpaceRecentList setCreator(QueryDentryResponseBodySpaceRecentListCreator creator) { this.creator = creator; return this; } public QueryDentryResponseBodySpaceRecentListCreator getCreator() { return this.creator; } public QueryDentryResponseBodySpaceRecentList setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentryResponseBodySpaceRecentList setDentryType(String dentryType) { this.dentryType = dentryType; return this; } public String getDentryType() { return this.dentryType; } public QueryDentryResponseBodySpaceRecentList setDentryUuid(String dentryUuid) { this.dentryUuid = dentryUuid; return this; } public String getDentryUuid() { return this.dentryUuid; } public QueryDentryResponseBodySpaceRecentList setDocKey(String docKey) { this.docKey = docKey; return this; } public String getDocKey() { return this.docKey; } public QueryDentryResponseBodySpaceRecentList setExtension(String extension) { this.extension = extension; return this; } public String getExtension() { return this.extension; } public QueryDentryResponseBodySpaceRecentList setHasChildren(Boolean hasChildren) { this.hasChildren = hasChildren; return this; } public Boolean getHasChildren() { return this.hasChildren; } public QueryDentryResponseBodySpaceRecentList setLinkSourceInfo(QueryDentryResponseBodySpaceRecentListLinkSourceInfo linkSourceInfo) { this.linkSourceInfo = linkSourceInfo; return this; } public QueryDentryResponseBodySpaceRecentListLinkSourceInfo getLinkSourceInfo() { return this.linkSourceInfo; } public QueryDentryResponseBodySpaceRecentList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodySpaceRecentList setPath(String path) { this.path = path; return this; } public String getPath() { return this.path; } public QueryDentryResponseBodySpaceRecentList setSpace(Object space) { this.space = space; return this; } public Object getSpace() { return this.space; } public QueryDentryResponseBodySpaceRecentList setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentryResponseBodySpaceRecentList setStatisticalInfo(QueryDentryResponseBodySpaceRecentListStatisticalInfo statisticalInfo) { this.statisticalInfo = statisticalInfo; return this; } public QueryDentryResponseBodySpaceRecentListStatisticalInfo getStatisticalInfo() { return this.statisticalInfo; } public QueryDentryResponseBodySpaceRecentList setUpdatedTime(Long updatedTime) { this.updatedTime = updatedTime; return this; } public Long getUpdatedTime() { return this.updatedTime; } public QueryDentryResponseBodySpaceRecentList setUpdater(QueryDentryResponseBodySpaceRecentListUpdater updater) { this.updater = updater; return this; } public QueryDentryResponseBodySpaceRecentListUpdater getUpdater() { return this.updater; } public QueryDentryResponseBodySpaceRecentList setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public QueryDentryResponseBodySpaceRecentList setVisitorInfo(QueryDentryResponseBodySpaceRecentListVisitorInfo visitorInfo) { this.visitorInfo = visitorInfo; return this; } public QueryDentryResponseBodySpaceRecentListVisitorInfo getVisitorInfo() { return this.visitorInfo; } } public static class QueryDentryResponseBodySpaceVisitorInfo extends TeaModel { /** * <strong>example:</strong> * <p>GET_DENTRY</p> */ @NameInMap("DentryActions") public java.util.List<String> dentryActions; /** * <strong>example:</strong> * <p>3</p> */ @NameInMap("RoleCode") public String roleCode; /** * <strong>example:</strong> * <p>GET_SPACE</p> */ @NameInMap("SpaceActions") public java.util.List<String> spaceActions; public static QueryDentryResponseBodySpaceVisitorInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpaceVisitorInfo self = new QueryDentryResponseBodySpaceVisitorInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpaceVisitorInfo setDentryActions(java.util.List<String> dentryActions) { this.dentryActions = dentryActions; return this; } public java.util.List<String> getDentryActions() { return this.dentryActions; } public QueryDentryResponseBodySpaceVisitorInfo setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public QueryDentryResponseBodySpaceVisitorInfo setSpaceActions(java.util.List<String> spaceActions) { this.spaceActions = spaceActions; return this; } public java.util.List<String> getSpaceActions() { return this.spaceActions; } } public static class QueryDentryResponseBodySpace extends TeaModel { /** * <strong>example:</strong> * <p><a href="https://img.alicdn.com/imgextra/i1/O1xxxxx.png">https://img.alicdn.com/imgextra/i1/O1xxxxx.png</a></p> */ @NameInMap("Cover") public String cover; /** * <strong>example:</strong> * <p>这是简介</p> */ @NameInMap("Description") public String description; @NameInMap("HdIconVO") public QueryDentryResponseBodySpaceHdIconVO hdIconVO; @NameInMap("IconVO") public QueryDentryResponseBodySpaceIconVO iconVO; /** * <strong>example:</strong> * <p>n9XJxxxxx</p> */ @NameInMap("Id") public String id; @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>测试知识库</p> */ @NameInMap("Owner") public QueryDentryResponseBodySpaceOwner owner; @NameInMap("RecentList") public java.util.List<QueryDentryResponseBodySpaceRecentList> recentList; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Type") public Integer type; /** * <strong>example:</strong> * <p><a href="https://alidocs.dingtalk.com/i/spaces/n9XJ*******Xy/overview">https://alidocs.dingtalk.com/i/spaces/n9XJ*******Xy/overview</a></p> */ @NameInMap("Url") public String url; @NameInMap("VisitorInfo") public QueryDentryResponseBodySpaceVisitorInfo visitorInfo; public static QueryDentryResponseBodySpace build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodySpace self = new QueryDentryResponseBodySpace(); return TeaModel.build(map, self); } public QueryDentryResponseBodySpace setCover(String cover) { this.cover = cover; return this; } public String getCover() { return this.cover; } public QueryDentryResponseBodySpace setDescription(String description) { this.description = description; return this; } public String getDescription() { return this.description; } public QueryDentryResponseBodySpace setHdIconVO(QueryDentryResponseBodySpaceHdIconVO hdIconVO) { this.hdIconVO = hdIconVO; return this; } public QueryDentryResponseBodySpaceHdIconVO getHdIconVO() { return this.hdIconVO; } public QueryDentryResponseBodySpace setIconVO(QueryDentryResponseBodySpaceIconVO iconVO) { this.iconVO = iconVO; return this; } public QueryDentryResponseBodySpaceIconVO getIconVO() { return this.iconVO; } public QueryDentryResponseBodySpace setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public QueryDentryResponseBodySpace setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodySpace setOwner(QueryDentryResponseBodySpaceOwner owner) { this.owner = owner; return this; } public QueryDentryResponseBodySpaceOwner getOwner() { return this.owner; } public QueryDentryResponseBodySpace setRecentList(java.util.List<QueryDentryResponseBodySpaceRecentList> recentList) { this.recentList = recentList; return this; } public java.util.List<QueryDentryResponseBodySpaceRecentList> getRecentList() { return this.recentList; } public QueryDentryResponseBodySpace setType(Integer type) { this.type = type; return this; } public Integer getType() { return this.type; } public QueryDentryResponseBodySpace setUrl(String url) { this.url = url; return this; } public String getUrl() { return this.url; } public QueryDentryResponseBodySpace setVisitorInfo(QueryDentryResponseBodySpaceVisitorInfo visitorInfo) { this.visitorInfo = visitorInfo; return this; } public QueryDentryResponseBodySpaceVisitorInfo getVisitorInfo() { return this.visitorInfo; } } public static class QueryDentryResponseBodyUpdater extends TeaModel { /** * <strong>example:</strong> * <p>hello</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>012345</p> */ @NameInMap("UserId") public String userId; public static QueryDentryResponseBodyUpdater build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodyUpdater self = new QueryDentryResponseBodyUpdater(); return TeaModel.build(map, self); } public QueryDentryResponseBodyUpdater setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryDentryResponseBodyUpdater setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } } public static class QueryDentryResponseBodyVisitorInfo extends TeaModel { @NameInMap("DentryActions") public java.util.List<String> dentryActions; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("RoleCode") public String roleCode; @NameInMap("SpaceActions") public java.util.List<String> spaceActions; public static QueryDentryResponseBodyVisitorInfo build(java.util.Map<String, ?> map) throws Exception { QueryDentryResponseBodyVisitorInfo self = new QueryDentryResponseBodyVisitorInfo(); return TeaModel.build(map, self); } public QueryDentryResponseBodyVisitorInfo setDentryActions(java.util.List<String> dentryActions) { this.dentryActions = dentryActions; return this; } public java.util.List<String> getDentryActions() { return this.dentryActions; } public QueryDentryResponseBodyVisitorInfo setRoleCode(String roleCode) { this.roleCode = roleCode; return this; } public String getRoleCode() { return this.roleCode; } public QueryDentryResponseBodyVisitorInfo setSpaceActions(java.util.List<String> spaceActions) { this.spaceActions = spaceActions; return this; } public java.util.List<String> getSpaceActions() { return this.spaceActions; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryDentryShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryDentryShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryDentryShrinkHeaders self = new QueryDentryShrinkHeaders(); return TeaModel.build(map, self); } public QueryDentryShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryDentryShrinkHeaders 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/QueryDentryShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryDentryShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>xxx</p> */ @NameInMap("DentryId") public String dentryId; /** * <strong>example:</strong> * <p>true</p> */ @NameInMap("IncludeSpace") public Boolean includeSpace; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>space-fxhb96vuddz8htqt</p> */ @NameInMap("SpaceId") public String spaceId; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryDentryShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryDentryShrinkRequest self = new QueryDentryShrinkRequest(); return TeaModel.build(map, self); } public QueryDentryShrinkRequest setDentryId(String dentryId) { this.dentryId = dentryId; return this; } public String getDentryId() { return this.dentryId; } public QueryDentryShrinkRequest setIncludeSpace(Boolean includeSpace) { this.includeSpace = includeSpace; return this; } public Boolean getIncludeSpace() { return this.includeSpace; } public QueryDentryShrinkRequest setSpaceId(String spaceId) { this.spaceId = spaceId; return this; } public String getSpaceId() { return this.spaceId; } public QueryDentryShrinkRequest 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/QueryGroupLiveInfoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryGroupLiveInfoHeadersAccountContext accountContext; public static QueryGroupLiveInfoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoHeaders self = new QueryGroupLiveInfoHeaders(); return TeaModel.build(map, self); } public QueryGroupLiveInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryGroupLiveInfoHeaders setAccountContext(QueryGroupLiveInfoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryGroupLiveInfoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryGroupLiveInfoHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryGroupLiveInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoHeadersAccountContext self = new QueryGroupLiveInfoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryGroupLiveInfoHeadersAccountContext 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/QueryGroupLiveInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>333d</p> */ @NameInMap("AnchorUnionId") public String anchorUnionId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveUuid") public String liveUuid; @NameInMap("TenantContext") public QueryGroupLiveInfoRequestTenantContext tenantContext; public static QueryGroupLiveInfoRequest build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoRequest self = new QueryGroupLiveInfoRequest(); return TeaModel.build(map, self); } public QueryGroupLiveInfoRequest setAnchorUnionId(String anchorUnionId) { this.anchorUnionId = anchorUnionId; return this; } public String getAnchorUnionId() { return this.anchorUnionId; } public QueryGroupLiveInfoRequest setLiveUuid(String liveUuid) { this.liveUuid = liveUuid; return this; } public String getLiveUuid() { return this.liveUuid; } public QueryGroupLiveInfoRequest setTenantContext(QueryGroupLiveInfoRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryGroupLiveInfoRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryGroupLiveInfoRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryGroupLiveInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoRequestTenantContext self = new QueryGroupLiveInfoRequestTenantContext(); return TeaModel.build(map, self); } public QueryGroupLiveInfoRequestTenantContext 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/QueryGroupLiveInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryGroupLiveInfoResponseBody body; public static QueryGroupLiveInfoResponse build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoResponse self = new QueryGroupLiveInfoResponse(); return TeaModel.build(map, self); } public QueryGroupLiveInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryGroupLiveInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryGroupLiveInfoResponse setBody(QueryGroupLiveInfoResponseBody body) { this.body = body; return this; } public QueryGroupLiveInfoResponseBody 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/QueryGroupLiveInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoResponseBody extends TeaModel { /** * <strong>example:</strong> * <p><a href="http://xxx/kk.jpg">http://xxx/kk.jpg</a></p> */ @NameInMap("coverUrl") public String coverUrl; /** * <strong>example:</strong> * <p>59886</p> */ @NameInMap("duration") public Long duration; /** * <strong>example:</strong> * <p>1687928400000</p> */ @NameInMap("endTime") public Long endTime; @NameInMap("introduction") public String introduction; /** * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("liveId") public String liveId; /** * <strong>example:</strong> * <p><a href="http://ssssss">http://ssssss</a></p> */ @NameInMap("livePlayUrl") public String livePlayUrl; @NameInMap("liveStatus") public Integer liveStatus; /** * <strong>example:</strong> * <p>13414</p> */ @NameInMap("playbackDuration") public Long playbackDuration; @NameInMap("replayUrl") public String replayUrl; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("staffId") public String staffId; /** * <strong>example:</strong> * <p>1687924800000</p> */ @NameInMap("startTime") public Long startTime; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("subscribeCount") public Integer subscribeCount; @NameInMap("title") public String title; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("uv") public Integer uv; /** * <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 QueryGroupLiveInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoResponseBody self = new QueryGroupLiveInfoResponseBody(); return TeaModel.build(map, self); } public QueryGroupLiveInfoResponseBody setCoverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } public String getCoverUrl() { return this.coverUrl; } public QueryGroupLiveInfoResponseBody setDuration(Long duration) { this.duration = duration; return this; } public Long getDuration() { return this.duration; } public QueryGroupLiveInfoResponseBody setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryGroupLiveInfoResponseBody setIntroduction(String introduction) { this.introduction = introduction; return this; } public String getIntroduction() { return this.introduction; } public QueryGroupLiveInfoResponseBody setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryGroupLiveInfoResponseBody setLivePlayUrl(String livePlayUrl) { this.livePlayUrl = livePlayUrl; return this; } public String getLivePlayUrl() { return this.livePlayUrl; } public QueryGroupLiveInfoResponseBody setLiveStatus(Integer liveStatus) { this.liveStatus = liveStatus; return this; } public Integer getLiveStatus() { return this.liveStatus; } public QueryGroupLiveInfoResponseBody setPlaybackDuration(Long playbackDuration) { this.playbackDuration = playbackDuration; return this; } public Long getPlaybackDuration() { return this.playbackDuration; } public QueryGroupLiveInfoResponseBody setReplayUrl(String replayUrl) { this.replayUrl = replayUrl; return this; } public String getReplayUrl() { return this.replayUrl; } public QueryGroupLiveInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryGroupLiveInfoResponseBody setStaffId(String staffId) { this.staffId = staffId; return this; } public String getStaffId() { return this.staffId; } public QueryGroupLiveInfoResponseBody setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryGroupLiveInfoResponseBody setSubscribeCount(Integer subscribeCount) { this.subscribeCount = subscribeCount; return this; } public Integer getSubscribeCount() { return this.subscribeCount; } public QueryGroupLiveInfoResponseBody setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public QueryGroupLiveInfoResponseBody setUv(Integer uv) { this.uv = uv; return this; } public Integer getUv() { return this.uv; } public QueryGroupLiveInfoResponseBody setVendorRequestId(String vendorRequestId) { this.vendorRequestId = vendorRequestId; return this; } public String getVendorRequestId() { return this.vendorRequestId; } public QueryGroupLiveInfoResponseBody 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/QueryGroupLiveInfoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryGroupLiveInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoShrinkHeaders self = new QueryGroupLiveInfoShrinkHeaders(); return TeaModel.build(map, self); } public QueryGroupLiveInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryGroupLiveInfoShrinkHeaders 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/QueryGroupLiveInfoShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryGroupLiveInfoShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>333d</p> */ @NameInMap("AnchorUnionId") public String anchorUnionId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveUuid") public String liveUuid; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryGroupLiveInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryGroupLiveInfoShrinkRequest self = new QueryGroupLiveInfoShrinkRequest(); return TeaModel.build(map, self); } public QueryGroupLiveInfoShrinkRequest setAnchorUnionId(String anchorUnionId) { this.anchorUnionId = anchorUnionId; return this; } public String getAnchorUnionId() { return this.anchorUnionId; } public QueryGroupLiveInfoShrinkRequest setLiveUuid(String liveUuid) { this.liveUuid = liveUuid; return this; } public String getLiveUuid() { return this.liveUuid; } public QueryGroupLiveInfoShrinkRequest 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/QueryLiveInfoHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryLiveInfoHeadersAccountContext accountContext; public static QueryLiveInfoHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoHeaders self = new QueryLiveInfoHeaders(); return TeaModel.build(map, self); } public QueryLiveInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveInfoHeaders setAccountContext(QueryLiveInfoHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryLiveInfoHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryLiveInfoHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryLiveInfoHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoHeadersAccountContext self = new QueryLiveInfoHeadersAccountContext(); return TeaModel.build(map, self); } public QueryLiveInfoHeadersAccountContext 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/QueryLiveInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; @NameInMap("TenantContext") public QueryLiveInfoRequestTenantContext tenantContext; public static QueryLiveInfoRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoRequest self = new QueryLiveInfoRequest(); return TeaModel.build(map, self); } public QueryLiveInfoRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveInfoRequest setTenantContext(QueryLiveInfoRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryLiveInfoRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryLiveInfoRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryLiveInfoRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoRequestTenantContext self = new QueryLiveInfoRequestTenantContext(); return TeaModel.build(map, self); } public QueryLiveInfoRequestTenantContext 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/QueryLiveInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryLiveInfoResponseBody body; public static QueryLiveInfoResponse build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoResponse self = new QueryLiveInfoResponse(); return TeaModel.build(map, self); } public QueryLiveInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryLiveInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryLiveInfoResponse setBody(QueryLiveInfoResponseBody body) { this.body = body; return this; } public QueryLiveInfoResponseBody 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/QueryLiveInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoResponseBody extends TeaModel { /** * <strong>example:</strong> * <p><a href="http://xxx/kk.jpg">http://xxx/kk.jpg</a></p> */ @NameInMap("coverUrl") public String coverUrl; /** * <strong>example:</strong> * <p>59886</p> */ @NameInMap("duration") public Long duration; /** * <strong>example:</strong> * <p>1662447951960</p> */ @NameInMap("endTime") public Long endTime; @NameInMap("introduction") public String introduction; /** * <strong>example:</strong> * <p>1211-3442-122</p> */ @NameInMap("liveId") public String liveId; /** * <strong>example:</strong> * <p><a href="http://ssssss">http://ssssss</a></p> */ @NameInMap("livePlayUrl") public String livePlayUrl; @NameInMap("liveStatus") public Integer liveStatus; /** * <strong>example:</strong> * <p>13414</p> */ @NameInMap("playbackDuration") public Long playbackDuration; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>1627353123000</p> */ @NameInMap("startTime") public Long startTime; /** * <strong>example:</strong> * <p>111</p> */ @NameInMap("subscribeCount") public Integer subscribeCount; @NameInMap("title") public String title; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("uv") public Integer uv; public static QueryLiveInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoResponseBody self = new QueryLiveInfoResponseBody(); return TeaModel.build(map, self); } public QueryLiveInfoResponseBody setCoverUrl(String coverUrl) { this.coverUrl = coverUrl; return this; } public String getCoverUrl() { return this.coverUrl; } public QueryLiveInfoResponseBody setDuration(Long duration) { this.duration = duration; return this; } public Long getDuration() { return this.duration; } public QueryLiveInfoResponseBody setEndTime(Long endTime) { this.endTime = endTime; return this; } public Long getEndTime() { return this.endTime; } public QueryLiveInfoResponseBody setIntroduction(String introduction) { this.introduction = introduction; return this; } public String getIntroduction() { return this.introduction; } public QueryLiveInfoResponseBody setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveInfoResponseBody setLivePlayUrl(String livePlayUrl) { this.livePlayUrl = livePlayUrl; return this; } public String getLivePlayUrl() { return this.livePlayUrl; } public QueryLiveInfoResponseBody setLiveStatus(Integer liveStatus) { this.liveStatus = liveStatus; return this; } public Integer getLiveStatus() { return this.liveStatus; } public QueryLiveInfoResponseBody setPlaybackDuration(Long playbackDuration) { this.playbackDuration = playbackDuration; return this; } public Long getPlaybackDuration() { return this.playbackDuration; } public QueryLiveInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryLiveInfoResponseBody setStartTime(Long startTime) { this.startTime = startTime; return this; } public Long getStartTime() { return this.startTime; } public QueryLiveInfoResponseBody setSubscribeCount(Integer subscribeCount) { this.subscribeCount = subscribeCount; return this; } public Integer getSubscribeCount() { return this.subscribeCount; } public QueryLiveInfoResponseBody setTitle(String title) { this.title = title; return this; } public String getTitle() { return this.title; } public QueryLiveInfoResponseBody setUv(Integer uv) { this.uv = uv; return this; } public Integer getUv() { return this.uv; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryLiveInfoShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryLiveInfoShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoShrinkHeaders self = new QueryLiveInfoShrinkHeaders(); return TeaModel.build(map, self); } public QueryLiveInfoShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveInfoShrinkHeaders 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/QueryLiveInfoShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveInfoShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryLiveInfoShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveInfoShrinkRequest self = new QueryLiveInfoShrinkRequest(); return TeaModel.build(map, self); } public QueryLiveInfoShrinkRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveInfoShrinkRequest 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/QueryLiveWatchDetailHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryLiveWatchDetailHeadersAccountContext accountContext; public static QueryLiveWatchDetailHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailHeaders self = new QueryLiveWatchDetailHeaders(); return TeaModel.build(map, self); } public QueryLiveWatchDetailHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveWatchDetailHeaders setAccountContext(QueryLiveWatchDetailHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryLiveWatchDetailHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryLiveWatchDetailHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryLiveWatchDetailHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailHeadersAccountContext self = new QueryLiveWatchDetailHeadersAccountContext(); return TeaModel.build(map, self); } public QueryLiveWatchDetailHeadersAccountContext 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/QueryLiveWatchDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; @NameInMap("TenantContext") public QueryLiveWatchDetailRequestTenantContext tenantContext; public static QueryLiveWatchDetailRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailRequest self = new QueryLiveWatchDetailRequest(); return TeaModel.build(map, self); } public QueryLiveWatchDetailRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveWatchDetailRequest setTenantContext(QueryLiveWatchDetailRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryLiveWatchDetailRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryLiveWatchDetailRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryLiveWatchDetailRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailRequestTenantContext self = new QueryLiveWatchDetailRequestTenantContext(); return TeaModel.build(map, self); } public QueryLiveWatchDetailRequestTenantContext 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/QueryLiveWatchDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryLiveWatchDetailResponseBody body; public static QueryLiveWatchDetailResponse build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailResponse self = new QueryLiveWatchDetailResponse(); return TeaModel.build(map, self); } public QueryLiveWatchDetailResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryLiveWatchDetailResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryLiveWatchDetailResponse setBody(QueryLiveWatchDetailResponseBody body) { this.body = body; return this; } public QueryLiveWatchDetailResponseBody 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/QueryLiveWatchDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>84600</p> */ @NameInMap("avgWatchTime") public Long avgWatchTime; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("liveUv") public Integer liveUv; /** * <strong>example:</strong> * <p>10000</p> */ @NameInMap("msgCount") public Integer msgCount; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("playbackUv") public Integer playbackUv; /** * <strong>example:</strong> * <p>30</p> */ @NameInMap("praiseCount") public Integer praiseCount; /** * <strong>example:</strong> * <p>1000</p> */ @NameInMap("pv") public Integer pv; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; /** * <strong>example:</strong> * <p>1222000</p> */ @NameInMap("totalWatchTime") public Long totalWatchTime; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("uv") public Integer uv; public static QueryLiveWatchDetailResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailResponseBody self = new QueryLiveWatchDetailResponseBody(); return TeaModel.build(map, self); } public QueryLiveWatchDetailResponseBody setAvgWatchTime(Long avgWatchTime) { this.avgWatchTime = avgWatchTime; return this; } public Long getAvgWatchTime() { return this.avgWatchTime; } public QueryLiveWatchDetailResponseBody setLiveUv(Integer liveUv) { this.liveUv = liveUv; return this; } public Integer getLiveUv() { return this.liveUv; } public QueryLiveWatchDetailResponseBody setMsgCount(Integer msgCount) { this.msgCount = msgCount; return this; } public Integer getMsgCount() { return this.msgCount; } public QueryLiveWatchDetailResponseBody setPlaybackUv(Integer playbackUv) { this.playbackUv = playbackUv; return this; } public Integer getPlaybackUv() { return this.playbackUv; } public QueryLiveWatchDetailResponseBody setPraiseCount(Integer praiseCount) { this.praiseCount = praiseCount; return this; } public Integer getPraiseCount() { return this.praiseCount; } public QueryLiveWatchDetailResponseBody setPv(Integer pv) { this.pv = pv; return this; } public Integer getPv() { return this.pv; } public QueryLiveWatchDetailResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryLiveWatchDetailResponseBody setTotalWatchTime(Long totalWatchTime) { this.totalWatchTime = totalWatchTime; return this; } public Long getTotalWatchTime() { return this.totalWatchTime; } public QueryLiveWatchDetailResponseBody setUv(Integer uv) { this.uv = uv; return this; } public Integer getUv() { return this.uv; } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryLiveWatchDetailShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryLiveWatchDetailShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailShrinkHeaders self = new QueryLiveWatchDetailShrinkHeaders(); return TeaModel.build(map, self); } public QueryLiveWatchDetailShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveWatchDetailShrinkHeaders 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/QueryLiveWatchDetailShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchDetailShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryLiveWatchDetailShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchDetailShrinkRequest self = new QueryLiveWatchDetailShrinkRequest(); return TeaModel.build(map, self); } public QueryLiveWatchDetailShrinkRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveWatchDetailShrinkRequest 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/QueryLiveWatchUserListHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryLiveWatchUserListHeadersAccountContext accountContext; public static QueryLiveWatchUserListHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListHeaders self = new QueryLiveWatchUserListHeaders(); return TeaModel.build(map, self); } public QueryLiveWatchUserListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveWatchUserListHeaders setAccountContext(QueryLiveWatchUserListHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryLiveWatchUserListHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryLiveWatchUserListHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryLiveWatchUserListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListHeadersAccountContext self = new QueryLiveWatchUserListHeadersAccountContext(); return TeaModel.build(map, self); } public QueryLiveWatchUserListHeadersAccountContext 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/QueryLiveWatchUserListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; @NameInMap("TenantContext") public QueryLiveWatchUserListRequestTenantContext tenantContext; public static QueryLiveWatchUserListRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListRequest self = new QueryLiveWatchUserListRequest(); return TeaModel.build(map, self); } public QueryLiveWatchUserListRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveWatchUserListRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public QueryLiveWatchUserListRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public QueryLiveWatchUserListRequest setTenantContext(QueryLiveWatchUserListRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryLiveWatchUserListRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryLiveWatchUserListRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("tenantId") public String tenantId; public static QueryLiveWatchUserListRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListRequestTenantContext self = new QueryLiveWatchUserListRequestTenantContext(); return TeaModel.build(map, self); } public QueryLiveWatchUserListRequestTenantContext 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/QueryLiveWatchUserListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryLiveWatchUserListResponseBody body; public static QueryLiveWatchUserListResponse build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListResponse self = new QueryLiveWatchUserListResponse(); return TeaModel.build(map, self); } public QueryLiveWatchUserListResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryLiveWatchUserListResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryLiveWatchUserListResponse setBody(QueryLiveWatchUserListResponseBody body) { this.body = body; return this; } public QueryLiveWatchUserListResponseBody 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/QueryLiveWatchUserListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListResponseBody extends TeaModel { @NameInMap("orgUsesList") public java.util.List<QueryLiveWatchUserListResponseBodyOrgUsesList> orgUsesList; @NameInMap("outOrgUserList") public java.util.List<QueryLiveWatchUserListResponseBodyOutOrgUserList> outOrgUserList; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; public static QueryLiveWatchUserListResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListResponseBody self = new QueryLiveWatchUserListResponseBody(); return TeaModel.build(map, self); } public QueryLiveWatchUserListResponseBody setOrgUsesList(java.util.List<QueryLiveWatchUserListResponseBodyOrgUsesList> orgUsesList) { this.orgUsesList = orgUsesList; return this; } public java.util.List<QueryLiveWatchUserListResponseBodyOrgUsesList> getOrgUsesList() { return this.orgUsesList; } public QueryLiveWatchUserListResponseBody setOutOrgUserList(java.util.List<QueryLiveWatchUserListResponseBodyOutOrgUserList> outOrgUserList) { this.outOrgUserList = outOrgUserList; return this; } public java.util.List<QueryLiveWatchUserListResponseBodyOutOrgUserList> getOutOrgUserList() { return this.outOrgUserList; } public QueryLiveWatchUserListResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class QueryLiveWatchUserListResponseBodyOrgUsesList extends TeaModel { @NameInMap("DeptName") public String deptName; @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>1234</p> */ @NameInMap("UserId") public String userId; /** * <strong>example:</strong> * <p>19999</p> */ @NameInMap("WatchLiveTime") public Long watchLiveTime; /** * <strong>example:</strong> * <p>131312312</p> */ @NameInMap("WatchPlaybackTime") public Long watchPlaybackTime; /** * <strong>example:</strong> * <p>1323132</p> */ @NameInMap("WatchProgressMs") public Long watchProgressMs; public static QueryLiveWatchUserListResponseBodyOrgUsesList build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListResponseBodyOrgUsesList self = new QueryLiveWatchUserListResponseBodyOrgUsesList(); return TeaModel.build(map, self); } public QueryLiveWatchUserListResponseBodyOrgUsesList setDeptName(String deptName) { this.deptName = deptName; return this; } public String getDeptName() { return this.deptName; } public QueryLiveWatchUserListResponseBodyOrgUsesList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryLiveWatchUserListResponseBodyOrgUsesList setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public QueryLiveWatchUserListResponseBodyOrgUsesList setWatchLiveTime(Long watchLiveTime) { this.watchLiveTime = watchLiveTime; return this; } public Long getWatchLiveTime() { return this.watchLiveTime; } public QueryLiveWatchUserListResponseBodyOrgUsesList setWatchPlaybackTime(Long watchPlaybackTime) { this.watchPlaybackTime = watchPlaybackTime; return this; } public Long getWatchPlaybackTime() { return this.watchPlaybackTime; } public QueryLiveWatchUserListResponseBodyOrgUsesList setWatchProgressMs(Long watchProgressMs) { this.watchProgressMs = watchProgressMs; return this; } public Long getWatchProgressMs() { return this.watchProgressMs; } } public static class QueryLiveWatchUserListResponseBodyOutOrgUserList extends TeaModel { @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>12312312</p> */ @NameInMap("WatchLiveTime") public Long watchLiveTime; /** * <strong>example:</strong> * <p>21313131</p> */ @NameInMap("WatchPlaybackTime") public Long watchPlaybackTime; /** * <strong>example:</strong> * <p>123131</p> */ @NameInMap("WatchProgressMs") public Long watchProgressMs; public static QueryLiveWatchUserListResponseBodyOutOrgUserList build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListResponseBodyOutOrgUserList self = new QueryLiveWatchUserListResponseBodyOutOrgUserList(); return TeaModel.build(map, self); } public QueryLiveWatchUserListResponseBodyOutOrgUserList setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public QueryLiveWatchUserListResponseBodyOutOrgUserList setWatchLiveTime(Long watchLiveTime) { this.watchLiveTime = watchLiveTime; return this; } public Long getWatchLiveTime() { return this.watchLiveTime; } public QueryLiveWatchUserListResponseBodyOutOrgUserList setWatchPlaybackTime(Long watchPlaybackTime) { this.watchPlaybackTime = watchPlaybackTime; return this; } public Long getWatchPlaybackTime() { return this.watchPlaybackTime; } public QueryLiveWatchUserListResponseBodyOutOrgUserList setWatchProgressMs(Long watchProgressMs) { this.watchProgressMs = watchProgressMs; return this; } public Long getWatchProgressMs() { return this.watchProgressMs; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryLiveWatchUserListShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryLiveWatchUserListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListShrinkHeaders self = new QueryLiveWatchUserListShrinkHeaders(); return TeaModel.build(map, self); } public QueryLiveWatchUserListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryLiveWatchUserListShrinkHeaders 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/QueryLiveWatchUserListShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryLiveWatchUserListShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4d38xxxxx</p> */ @NameInMap("LiveId") public String liveId; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryLiveWatchUserListShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryLiveWatchUserListShrinkRequest self = new QueryLiveWatchUserListShrinkRequest(); return TeaModel.build(map, self); } public QueryLiveWatchUserListShrinkRequest setLiveId(String liveId) { this.liveId = liveId; return this; } public String getLiveId() { return this.liveId; } public QueryLiveWatchUserListShrinkRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public QueryLiveWatchUserListShrinkRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public QueryLiveWatchUserListShrinkRequest 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/QueryMeetingRoomGroupHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryMeetingRoomGroupHeadersAccountContext accountContext; public static QueryMeetingRoomGroupHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupHeaders self = new QueryMeetingRoomGroupHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomGroupHeaders setAccountContext(QueryMeetingRoomGroupHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryMeetingRoomGroupHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryMeetingRoomGroupHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryMeetingRoomGroupHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupHeadersAccountContext self = new QueryMeetingRoomGroupHeadersAccountContext(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupHeadersAccountContext 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/QueryMeetingRoomGroupListHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryMeetingRoomGroupListHeadersAccountContext accountContext; public static QueryMeetingRoomGroupListHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListHeaders self = new QueryMeetingRoomGroupListHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomGroupListHeaders setAccountContext(QueryMeetingRoomGroupListHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryMeetingRoomGroupListHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryMeetingRoomGroupListHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryMeetingRoomGroupListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListHeadersAccountContext self = new QueryMeetingRoomGroupListHeadersAccountContext(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListHeadersAccountContext 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/QueryMeetingRoomGroupListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListRequest extends TeaModel { @NameInMap("Request") public java.util.Map<String, ?> request; @NameInMap("TenantContext") public QueryMeetingRoomGroupListRequestTenantContext tenantContext; public static QueryMeetingRoomGroupListRequest build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListRequest self = new QueryMeetingRoomGroupListRequest(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListRequest setRequest(java.util.Map<String, ?> request) { this.request = request; return this; } public java.util.Map<String, ?> getRequest() { return this.request; } public QueryMeetingRoomGroupListRequest setTenantContext(QueryMeetingRoomGroupListRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryMeetingRoomGroupListRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryMeetingRoomGroupListRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static QueryMeetingRoomGroupListRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListRequestTenantContext self = new QueryMeetingRoomGroupListRequestTenantContext(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListRequestTenantContext 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/QueryMeetingRoomGroupListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryMeetingRoomGroupListResponseBody body; public static QueryMeetingRoomGroupListResponse build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListResponse self = new QueryMeetingRoomGroupListResponse(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryMeetingRoomGroupListResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryMeetingRoomGroupListResponse setBody(QueryMeetingRoomGroupListResponseBody body) { this.body = body; return this; } public QueryMeetingRoomGroupListResponseBody 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/QueryMeetingRoomGroupListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListResponseBody extends TeaModel { /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; @NameInMap("result") public java.util.List<QueryMeetingRoomGroupListResponseBodyResult> result; public static QueryMeetingRoomGroupListResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListResponseBody self = new QueryMeetingRoomGroupListResponseBody(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public QueryMeetingRoomGroupListResponseBody setResult(java.util.List<QueryMeetingRoomGroupListResponseBodyResult> result) { this.result = result; return this; } public java.util.List<QueryMeetingRoomGroupListResponseBodyResult> getResult() { return this.result; } public static class QueryMeetingRoomGroupListResponseBodyResult extends TeaModel { /** * <strong>example:</strong> * <p>172</p> */ @NameInMap("GroupId") public Long groupId; /** * <strong>example:</strong> * <p>测试分组</p> */ @NameInMap("GroupName") public String groupName; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("ParentId") public Long parentId; public static QueryMeetingRoomGroupListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListResponseBodyResult self = new QueryMeetingRoomGroupListResponseBodyResult(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListResponseBodyResult setGroupId(Long groupId) { this.groupId = groupId; return this; } public Long getGroupId() { return this.groupId; } public QueryMeetingRoomGroupListResponseBodyResult setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public QueryMeetingRoomGroupListResponseBodyResult setParentId(Long parentId) { this.parentId = parentId; return this; } public Long getParentId() { return this.parentId; } } }
0
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426
java-sources/com/aliyun/aliding20230426/2.43.2/com/aliyun/aliding20230426/models/QueryMeetingRoomGroupListShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryMeetingRoomGroupListShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListShrinkHeaders self = new QueryMeetingRoomGroupListShrinkHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomGroupListShrinkHeaders 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/QueryMeetingRoomGroupListShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupListShrinkRequest extends TeaModel { @NameInMap("Request") public String requestShrink; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryMeetingRoomGroupListShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupListShrinkRequest self = new QueryMeetingRoomGroupListShrinkRequest(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupListShrinkRequest setRequestShrink(String requestShrink) { this.requestShrink = requestShrink; return this; } public String getRequestShrink() { return this.requestShrink; } public QueryMeetingRoomGroupListShrinkRequest 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/QueryMeetingRoomGroupRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>172</p> */ @NameInMap("GroupId") public String groupId; @NameInMap("TenantContext") public QueryMeetingRoomGroupRequestTenantContext tenantContext; public static QueryMeetingRoomGroupRequest build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupRequest self = new QueryMeetingRoomGroupRequest(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public QueryMeetingRoomGroupRequest setTenantContext(QueryMeetingRoomGroupRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryMeetingRoomGroupRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryMeetingRoomGroupRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static QueryMeetingRoomGroupRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupRequestTenantContext self = new QueryMeetingRoomGroupRequestTenantContext(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupRequestTenantContext 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/QueryMeetingRoomGroupResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public QueryMeetingRoomGroupResponseBody body; public static QueryMeetingRoomGroupResponse build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupResponse self = new QueryMeetingRoomGroupResponse(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public QueryMeetingRoomGroupResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public QueryMeetingRoomGroupResponse setBody(QueryMeetingRoomGroupResponseBody body) { this.body = body; return this; } public QueryMeetingRoomGroupResponseBody 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/QueryMeetingRoomGroupResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>172</p> */ @NameInMap("groupId") public Long groupId; /** * <strong>example:</strong> * <p>测试分组</p> */ @NameInMap("groupName") public String groupName; /** * <strong>example:</strong> * <p>0</p> */ @NameInMap("parentId") public Long parentId; /** * <p>requestId</p> * * <strong>example:</strong> * <p>0FAAEC9C-C6C8-5C87-AF8E-1195889BBXXX</p> */ @NameInMap("requestId") public String requestId; public static QueryMeetingRoomGroupResponseBody build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupResponseBody self = new QueryMeetingRoomGroupResponseBody(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupResponseBody setGroupId(Long groupId) { this.groupId = groupId; return this; } public Long getGroupId() { return this.groupId; } public QueryMeetingRoomGroupResponseBody setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public QueryMeetingRoomGroupResponseBody setParentId(Long parentId) { this.parentId = parentId; return this; } public Long getParentId() { return this.parentId; } public QueryMeetingRoomGroupResponseBody 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/QueryMeetingRoomGroupShrinkHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupShrinkHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public String accountContextShrink; public static QueryMeetingRoomGroupShrinkHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupShrinkHeaders self = new QueryMeetingRoomGroupShrinkHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupShrinkHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomGroupShrinkHeaders 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/QueryMeetingRoomGroupShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomGroupShrinkRequest extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>172</p> */ @NameInMap("GroupId") public String groupId; @NameInMap("TenantContext") public String tenantContextShrink; public static QueryMeetingRoomGroupShrinkRequest build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomGroupShrinkRequest self = new QueryMeetingRoomGroupShrinkRequest(); return TeaModel.build(map, self); } public QueryMeetingRoomGroupShrinkRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public QueryMeetingRoomGroupShrinkRequest 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/QueryMeetingRoomHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryMeetingRoomHeadersAccountContext accountContext; public static QueryMeetingRoomHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomHeaders self = new QueryMeetingRoomHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomHeaders setAccountContext(QueryMeetingRoomHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryMeetingRoomHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryMeetingRoomHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryMeetingRoomHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomHeadersAccountContext self = new QueryMeetingRoomHeadersAccountContext(); return TeaModel.build(map, self); } public QueryMeetingRoomHeadersAccountContext 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/QueryMeetingRoomListHeaders.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomListHeaders extends TeaModel { @NameInMap("commonHeaders") public java.util.Map<String, String> commonHeaders; @NameInMap("AccountContext") public QueryMeetingRoomListHeadersAccountContext accountContext; public static QueryMeetingRoomListHeaders build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomListHeaders self = new QueryMeetingRoomListHeaders(); return TeaModel.build(map, self); } public QueryMeetingRoomListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) { this.commonHeaders = commonHeaders; return this; } public java.util.Map<String, String> getCommonHeaders() { return this.commonHeaders; } public QueryMeetingRoomListHeaders setAccountContext(QueryMeetingRoomListHeadersAccountContext accountContext) { this.accountContext = accountContext; return this; } public QueryMeetingRoomListHeadersAccountContext getAccountContext() { return this.accountContext; } public static class QueryMeetingRoomListHeadersAccountContext extends TeaModel { /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>012345</p> */ @NameInMap("accountId") public String accountId; public static QueryMeetingRoomListHeadersAccountContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomListHeadersAccountContext self = new QueryMeetingRoomListHeadersAccountContext(); return TeaModel.build(map, self); } public QueryMeetingRoomListHeadersAccountContext 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/QueryMeetingRoomListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.aliding20230426.models; import com.aliyun.tea.*; public class QueryMeetingRoomListRequest extends TeaModel { /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>124L</p> */ @NameInMap("NextToken") public Long nextToken; @NameInMap("TenantContext") public QueryMeetingRoomListRequestTenantContext tenantContext; public static QueryMeetingRoomListRequest build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomListRequest self = new QueryMeetingRoomListRequest(); return TeaModel.build(map, self); } public QueryMeetingRoomListRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public QueryMeetingRoomListRequest setNextToken(Long nextToken) { this.nextToken = nextToken; return this; } public Long getNextToken() { return this.nextToken; } public QueryMeetingRoomListRequest setTenantContext(QueryMeetingRoomListRequestTenantContext tenantContext) { this.tenantContext = tenantContext; return this; } public QueryMeetingRoomListRequestTenantContext getTenantContext() { return this.tenantContext; } public static class QueryMeetingRoomListRequestTenantContext extends TeaModel { /** * <strong>example:</strong> * <p>xxxxxx</p> */ @NameInMap("tenantId") public String tenantId; public static QueryMeetingRoomListRequestTenantContext build(java.util.Map<String, ?> map) throws Exception { QueryMeetingRoomListRequestTenantContext self = new QueryMeetingRoomListRequestTenantContext(); return TeaModel.build(map, self); } public QueryMeetingRoomListRequestTenantContext setTenantId(String tenantId) { this.tenantId = tenantId; return this; } public String getTenantId() { return this.tenantId; } } }