index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppRecordingFilesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppRecordingFilesRequest} extends {@link RequestModel} * * <p>DescribeAppRecordingFilesRequest</p> */ public class DescribeAppRecordingFilesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100) private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") private Long startTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TaskIds") private java.util.List<String> taskIds; private DescribeAppRecordingFilesRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.endTs = builder.endTs; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.startTs = builder.startTs; this.taskIds = builder.taskIds; } public static Builder builder() { return new Builder(); } public static DescribeAppRecordingFilesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return taskIds */ public java.util.List<String> getTaskIds() { return this.taskIds; } public static final class Builder extends Request.Builder<DescribeAppRecordingFilesRequest, Builder> { private String appId; private String channelId; private Long endTs; private Integer pageNo; private Integer pageSize; private Long startTs; private java.util.List<String> taskIds; private Builder() { super(); } private Builder(DescribeAppRecordingFilesRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.endTs = request.endTs; this.pageNo = request.pageNo; this.pageSize = request.pageSize; this.startTs = request.startTs; this.taskIds = request.taskIds; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * EndTs. */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.putQueryParameter("PageNo", pageNo); this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * StartTs. */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } /** * TaskIds. */ public Builder taskIds(java.util.List<String> taskIds) { String taskIdsShrink = shrink(taskIds, "TaskIds", "json"); this.putQueryParameter("TaskIds", taskIdsShrink); this.taskIds = taskIds; return this; } @Override public DescribeAppRecordingFilesRequest build() { return new DescribeAppRecordingFilesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppRecordingFilesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppRecordingFilesResponse} extends {@link TeaModel} * * <p>DescribeAppRecordingFilesResponse</p> */ public class DescribeAppRecordingFilesResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAppRecordingFilesResponseBody body; private DescribeAppRecordingFilesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAppRecordingFilesResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAppRecordingFilesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAppRecordingFilesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAppRecordingFilesResponseBody body); @Override DescribeAppRecordingFilesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAppRecordingFilesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAppRecordingFilesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAppRecordingFilesResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAppRecordingFilesResponseBody body) { this.body = body; return this; } @Override public DescribeAppRecordingFilesResponse build() { return new DescribeAppRecordingFilesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppRecordingFilesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppRecordingFilesResponseBody} extends {@link TeaModel} * * <p>DescribeAppRecordingFilesResponseBody</p> */ public class DescribeAppRecordingFilesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Items") private java.util.List<Items> items; @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100) private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCnt") private Integer totalCnt; private DescribeAppRecordingFilesResponseBody(Builder builder) { this.items = builder.items; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCnt = builder.totalCnt; } public static Builder builder() { return new Builder(); } public static DescribeAppRecordingFilesResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return items */ public java.util.List<Items> getItems() { return this.items; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCnt */ public Integer getTotalCnt() { return this.totalCnt; } public static final class Builder { private java.util.List<Items> items; private Integer pageNo; private Integer pageSize; private String requestId; private Integer totalCnt; private Builder() { } private Builder(DescribeAppRecordingFilesResponseBody model) { this.items = model.items; this.pageNo = model.pageNo; this.pageSize = model.pageSize; this.requestId = model.requestId; this.totalCnt = model.totalCnt; } /** * Items. */ public Builder items(java.util.List<Items> items) { this.items = items; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Id of the request</p> * * <strong>example:</strong> * <p>16A96B9A-F203-4EC5-8E43-CB92E68F4CF8</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCnt. */ public Builder totalCnt(Integer totalCnt) { this.totalCnt = totalCnt; return this; } public DescribeAppRecordingFilesResponseBody build() { return new DescribeAppRecordingFilesResponseBody(this); } } /** * * {@link DescribeAppRecordingFilesResponseBody} extends {@link TeaModel} * * <p>DescribeAppRecordingFilesResponseBody</p> */ public static class Items extends TeaModel { @com.aliyun.core.annotation.NameInMap("Bucket") private String bucket; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("FileCreateTs") private Long fileCreateTs; @com.aliyun.core.annotation.NameInMap("FileDuration") private Integer fileDuration; @com.aliyun.core.annotation.NameInMap("FilePath") private String filePath; @com.aliyun.core.annotation.NameInMap("FileSize") private Integer fileSize; @com.aliyun.core.annotation.NameInMap("Region") private Integer region; @com.aliyun.core.annotation.NameInMap("StartTs") private Long startTs; @com.aliyun.core.annotation.NameInMap("TaskId") private String taskId; @com.aliyun.core.annotation.NameInMap("Vendor") private Integer vendor; private Items(Builder builder) { this.bucket = builder.bucket; this.channelId = builder.channelId; this.fileCreateTs = builder.fileCreateTs; this.fileDuration = builder.fileDuration; this.filePath = builder.filePath; this.fileSize = builder.fileSize; this.region = builder.region; this.startTs = builder.startTs; this.taskId = builder.taskId; this.vendor = builder.vendor; } public static Builder builder() { return new Builder(); } public static Items create() { return builder().build(); } /** * @return bucket */ public String getBucket() { return this.bucket; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return fileCreateTs */ public Long getFileCreateTs() { return this.fileCreateTs; } /** * @return fileDuration */ public Integer getFileDuration() { return this.fileDuration; } /** * @return filePath */ public String getFilePath() { return this.filePath; } /** * @return fileSize */ public Integer getFileSize() { return this.fileSize; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return vendor */ public Integer getVendor() { return this.vendor; } public static final class Builder { private String bucket; private String channelId; private Long fileCreateTs; private Integer fileDuration; private String filePath; private Integer fileSize; private Integer region; private Long startTs; private String taskId; private Integer vendor; private Builder() { } private Builder(Items model) { this.bucket = model.bucket; this.channelId = model.channelId; this.fileCreateTs = model.fileCreateTs; this.fileDuration = model.fileDuration; this.filePath = model.filePath; this.fileSize = model.fileSize; this.region = model.region; this.startTs = model.startTs; this.taskId = model.taskId; this.vendor = model.vendor; } /** * Bucket. */ public Builder bucket(String bucket) { this.bucket = bucket; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * FileCreateTs. */ public Builder fileCreateTs(Long fileCreateTs) { this.fileCreateTs = fileCreateTs; return this; } /** * FileDuration. */ public Builder fileDuration(Integer fileDuration) { this.fileDuration = fileDuration; return this; } /** * FilePath. */ public Builder filePath(String filePath) { this.filePath = filePath; return this; } /** * FileSize. */ public Builder fileSize(Integer fileSize) { this.fileSize = fileSize; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * StartTs. */ public Builder startTs(Long startTs) { this.startTs = startTs; return this; } /** * TaskId. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } /** * Vendor. */ public Builder vendor(Integer vendor) { this.vendor = vendor; return this; } public Items build() { return new Items(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppStreamingOutTemplatesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppStreamingOutTemplatesRequest} extends {@link RequestModel} * * <p>DescribeAppStreamingOutTemplatesRequest</p> */ public class DescribeAppStreamingOutTemplatesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Condition") private Condition condition; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNum") private Integer pageNum; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; private DescribeAppStreamingOutTemplatesRequest(Builder builder) { super(builder); this.appId = builder.appId; this.condition = builder.condition; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeAppStreamingOutTemplatesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return condition */ public Condition getCondition() { return this.condition; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<DescribeAppStreamingOutTemplatesRequest, Builder> { private String appId; private Condition condition; private Integer pageNum; private Integer pageSize; private Builder() { super(); } private Builder(DescribeAppStreamingOutTemplatesRequest request) { super(request); this.appId = request.appId; this.condition = request.condition; this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ioeh****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * Condition. */ public Builder condition(Condition condition) { String conditionShrink = shrink(condition, "Condition", "json"); this.putQueryParameter("Condition", conditionShrink); this.condition = condition; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public DescribeAppStreamingOutTemplatesRequest build() { return new DescribeAppStreamingOutTemplatesRequest(this); } } /** * * {@link DescribeAppStreamingOutTemplatesRequest} extends {@link TeaModel} * * <p>DescribeAppStreamingOutTemplatesRequest</p> */ public static class Condition extends TeaModel { @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("TemplateId") private String templateId; private Condition(Builder builder) { this.name = builder.name; this.templateId = builder.templateId; } public static Builder builder() { return new Builder(); } public static Condition create() { return builder().build(); } /** * @return name */ public String getName() { return this.name; } /** * @return templateId */ public String getTemplateId() { return this.templateId; } public static final class Builder { private String name; private String templateId; private Builder() { } private Builder(Condition model) { this.name = model.name; this.templateId = model.templateId; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * TemplateId. */ public Builder templateId(String templateId) { this.templateId = templateId; return this; } public Condition build() { return new Condition(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppStreamingOutTemplatesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppStreamingOutTemplatesResponse} extends {@link TeaModel} * * <p>DescribeAppStreamingOutTemplatesResponse</p> */ public class DescribeAppStreamingOutTemplatesResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAppStreamingOutTemplatesResponseBody body; private DescribeAppStreamingOutTemplatesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAppStreamingOutTemplatesResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAppStreamingOutTemplatesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAppStreamingOutTemplatesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAppStreamingOutTemplatesResponseBody body); @Override DescribeAppStreamingOutTemplatesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAppStreamingOutTemplatesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAppStreamingOutTemplatesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAppStreamingOutTemplatesResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAppStreamingOutTemplatesResponseBody body) { this.body = body; return this; } @Override public DescribeAppStreamingOutTemplatesResponse build() { return new DescribeAppStreamingOutTemplatesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppStreamingOutTemplatesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppStreamingOutTemplatesResponseBody} extends {@link TeaModel} * * <p>DescribeAppStreamingOutTemplatesResponseBody</p> */ public class DescribeAppStreamingOutTemplatesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Templates") private java.util.List<Templates> templates; @com.aliyun.core.annotation.NameInMap("TotalNum") private Long totalNum; @com.aliyun.core.annotation.NameInMap("TotalPage") private Long totalPage; private DescribeAppStreamingOutTemplatesResponseBody(Builder builder) { this.requestId = builder.requestId; this.templates = builder.templates; this.totalNum = builder.totalNum; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeAppStreamingOutTemplatesResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return templates */ public java.util.List<Templates> getTemplates() { return this.templates; } /** * @return totalNum */ public Long getTotalNum() { return this.totalNum; } /** * @return totalPage */ public Long getTotalPage() { return this.totalPage; } public static final class Builder { private String requestId; private java.util.List<Templates> templates; private Long totalNum; private Long totalPage; private Builder() { } private Builder(DescribeAppStreamingOutTemplatesResponseBody model) { this.requestId = model.requestId; this.templates = model.templates; this.totalNum = model.totalNum; this.totalPage = model.totalPage; } /** * <p>Id of the request</p> * * <strong>example:</strong> * <p>B0A2FCBC-43A4-428F-BC1D-3F4F85837F76</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Templates. */ public Builder templates(java.util.List<Templates> templates) { this.templates = templates; return this; } /** * TotalNum. */ public Builder totalNum(Long totalNum) { this.totalNum = totalNum; return this; } /** * TotalPage. */ public Builder totalPage(Long totalPage) { this.totalPage = totalPage; return this; } public DescribeAppStreamingOutTemplatesResponseBody build() { return new DescribeAppStreamingOutTemplatesResponseBody(this); } } /** * * {@link DescribeAppStreamingOutTemplatesResponseBody} extends {@link TeaModel} * * <p>DescribeAppStreamingOutTemplatesResponseBody</p> */ public static class Templates extends TeaModel { @com.aliyun.core.annotation.NameInMap("CreateTime") private String createTime; @com.aliyun.core.annotation.NameInMap("LayoutIds") private java.util.List<String> layoutIds; @com.aliyun.core.annotation.NameInMap("MediaEncode") private Integer mediaEncode; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("TemplateId") private String templateId; private Templates(Builder builder) { this.createTime = builder.createTime; this.layoutIds = builder.layoutIds; this.mediaEncode = builder.mediaEncode; this.name = builder.name; this.templateId = builder.templateId; } public static Builder builder() { return new Builder(); } public static Templates create() { return builder().build(); } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return layoutIds */ public java.util.List<String> getLayoutIds() { return this.layoutIds; } /** * @return mediaEncode */ public Integer getMediaEncode() { return this.mediaEncode; } /** * @return name */ public String getName() { return this.name; } /** * @return templateId */ public String getTemplateId() { return this.templateId; } public static final class Builder { private String createTime; private java.util.List<String> layoutIds; private Integer mediaEncode; private String name; private String templateId; private Builder() { } private Builder(Templates model) { this.createTime = model.createTime; this.layoutIds = model.layoutIds; this.mediaEncode = model.mediaEncode; this.name = model.name; this.templateId = model.templateId; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * LayoutIds. */ public Builder layoutIds(java.util.List<String> layoutIds) { this.layoutIds = layoutIds; return this; } /** * MediaEncode. */ public Builder mediaEncode(Integer mediaEncode) { this.mediaEncode = mediaEncode; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * TemplateId. */ public Builder templateId(String templateId) { this.templateId = templateId; return this; } public Templates build() { return new Templates(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppsRequest} extends {@link RequestModel} * * <p>DescribeAppsRequest</p> */ public class DescribeAppsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppVersion") private String appVersion; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Order") private String order; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNum") private Integer pageNum; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Status") private String status; private DescribeAppsRequest(Builder builder) { super(builder); this.appId = builder.appId; this.appVersion = builder.appVersion; this.order = builder.order; this.ownerId = builder.ownerId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeAppsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return appVersion */ public String getAppVersion() { return this.appVersion; } /** * @return order */ public String getOrder() { return this.order; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder extends Request.Builder<DescribeAppsRequest, Builder> { private String appId; private String appVersion; private String order; private Long ownerId; private Integer pageNum; private Integer pageSize; private String status; private Builder() { super(); } private Builder(DescribeAppsRequest request) { super(request); this.appId = request.appId; this.appVersion = request.appVersion; this.order = request.order; this.ownerId = request.ownerId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; this.status = request.status; } /** * AppId. */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * AppVersion. */ public Builder appVersion(String appVersion) { this.putQueryParameter("AppVersion", appVersion); this.appVersion = appVersion; return this; } /** * Order. */ public Builder order(String order) { this.putQueryParameter("Order", order); this.order = order; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * Status. */ public Builder status(String status) { this.putQueryParameter("Status", status); this.status = status; return this; } @Override public DescribeAppsRequest build() { return new DescribeAppsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppsResponse} extends {@link TeaModel} * * <p>DescribeAppsResponse</p> */ public class DescribeAppsResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAppsResponseBody body; private DescribeAppsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAppsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAppsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAppsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAppsResponseBody body); @Override DescribeAppsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAppsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAppsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAppsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAppsResponseBody body) { this.body = body; return this; } @Override public DescribeAppsResponse build() { return new DescribeAppsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAppsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAppsResponseBody} extends {@link TeaModel} * * <p>DescribeAppsResponseBody</p> */ public class DescribeAppsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppList") private AppList appList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalNum") private Integer totalNum; @com.aliyun.core.annotation.NameInMap("TotalPage") private Integer totalPage; private DescribeAppsResponseBody(Builder builder) { this.appList = builder.appList; this.requestId = builder.requestId; this.totalNum = builder.totalNum; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeAppsResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return appList */ public AppList getAppList() { return this.appList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalNum */ public Integer getTotalNum() { return this.totalNum; } /** * @return totalPage */ public Integer getTotalPage() { return this.totalPage; } public static final class Builder { private AppList appList; private String requestId; private Integer totalNum; private Integer totalPage; private Builder() { } private Builder(DescribeAppsResponseBody model) { this.appList = model.appList; this.requestId = model.requestId; this.totalNum = model.totalNum; this.totalPage = model.totalPage; } /** * AppList. */ public Builder appList(AppList appList) { this.appList = appList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalNum. */ public Builder totalNum(Integer totalNum) { this.totalNum = totalNum; return this; } /** * TotalPage. */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } public DescribeAppsResponseBody build() { return new DescribeAppsResponseBody(this); } } /** * * {@link DescribeAppsResponseBody} extends {@link TeaModel} * * <p>DescribeAppsResponseBody</p> */ public static class ServiceAreas extends TeaModel { @com.aliyun.core.annotation.NameInMap("ServiceArea") private java.util.List<String> serviceArea; private ServiceAreas(Builder builder) { this.serviceArea = builder.serviceArea; } public static Builder builder() { return new Builder(); } public static ServiceAreas create() { return builder().build(); } /** * @return serviceArea */ public java.util.List<String> getServiceArea() { return this.serviceArea; } public static final class Builder { private java.util.List<String> serviceArea; private Builder() { } private Builder(ServiceAreas model) { this.serviceArea = model.serviceArea; } /** * ServiceArea. */ public Builder serviceArea(java.util.List<String> serviceArea) { this.serviceArea = serviceArea; return this; } public ServiceAreas build() { return new ServiceAreas(this); } } } /** * * {@link DescribeAppsResponseBody} extends {@link TeaModel} * * <p>DescribeAppsResponseBody</p> */ public static class App extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("AppName") private String appName; @com.aliyun.core.annotation.NameInMap("AppType") private String appType; @com.aliyun.core.annotation.NameInMap("BillType") private String billType; @com.aliyun.core.annotation.NameInMap("CreateTime") private String createTime; @com.aliyun.core.annotation.NameInMap("ServiceAreas") private ServiceAreas serviceAreas; @com.aliyun.core.annotation.NameInMap("Status") private Integer status; @com.aliyun.core.annotation.NameInMap("Version") private String version; private App(Builder builder) { this.appId = builder.appId; this.appName = builder.appName; this.appType = builder.appType; this.billType = builder.billType; this.createTime = builder.createTime; this.serviceAreas = builder.serviceAreas; this.status = builder.status; this.version = builder.version; } public static Builder builder() { return new Builder(); } public static App create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return appName */ public String getAppName() { return this.appName; } /** * @return appType */ public String getAppType() { return this.appType; } /** * @return billType */ public String getBillType() { return this.billType; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return serviceAreas */ public ServiceAreas getServiceAreas() { return this.serviceAreas; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return version */ public String getVersion() { return this.version; } public static final class Builder { private String appId; private String appName; private String appType; private String billType; private String createTime; private ServiceAreas serviceAreas; private Integer status; private String version; private Builder() { } private Builder(App model) { this.appId = model.appId; this.appName = model.appName; this.appType = model.appType; this.billType = model.billType; this.createTime = model.createTime; this.serviceAreas = model.serviceAreas; this.status = model.status; this.version = model.version; } /** * AppId. */ public Builder appId(String appId) { this.appId = appId; return this; } /** * AppName. */ public Builder appName(String appName) { this.appName = appName; return this; } /** * AppType. */ public Builder appType(String appType) { this.appType = appType; return this; } /** * BillType. */ public Builder billType(String billType) { this.billType = billType; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * ServiceAreas. */ public Builder serviceAreas(ServiceAreas serviceAreas) { this.serviceAreas = serviceAreas; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * Version. */ public Builder version(String version) { this.version = version; return this; } public App build() { return new App(this); } } } /** * * {@link DescribeAppsResponseBody} extends {@link TeaModel} * * <p>DescribeAppsResponseBody</p> */ public static class AppList extends TeaModel { @com.aliyun.core.annotation.NameInMap("App") private java.util.List<App> app; private AppList(Builder builder) { this.app = builder.app; } public static Builder builder() { return new Builder(); } public static AppList create() { return builder().build(); } /** * @return app */ public java.util.List<App> getApp() { return this.app; } public static final class Builder { private java.util.List<App> app; private Builder() { } private Builder(AppList model) { this.app = model.app; } /** * App. */ public Builder app(java.util.List<App> app) { this.app = app; return this; } public AppList build() { return new AppList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAutoLiveStreamRuleRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAutoLiveStreamRuleRequest} extends {@link RequestModel} * * <p>DescribeAutoLiveStreamRuleRequest</p> */ public class DescribeAutoLiveStreamRuleRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; private DescribeAutoLiveStreamRuleRequest(Builder builder) { super(builder); this.appId = builder.appId; this.ownerId = builder.ownerId; } public static Builder builder() { return new Builder(); } public static DescribeAutoLiveStreamRuleRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } public static final class Builder extends Request.Builder<DescribeAutoLiveStreamRuleRequest, Builder> { private String appId; private Long ownerId; private Builder() { super(); } private Builder(DescribeAutoLiveStreamRuleRequest request) { super(request); this.appId = request.appId; this.ownerId = request.ownerId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eo85****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } @Override public DescribeAutoLiveStreamRuleRequest build() { return new DescribeAutoLiveStreamRuleRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAutoLiveStreamRuleResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAutoLiveStreamRuleResponse} extends {@link TeaModel} * * <p>DescribeAutoLiveStreamRuleResponse</p> */ public class DescribeAutoLiveStreamRuleResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeAutoLiveStreamRuleResponseBody body; private DescribeAutoLiveStreamRuleResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeAutoLiveStreamRuleResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeAutoLiveStreamRuleResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeAutoLiveStreamRuleResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeAutoLiveStreamRuleResponseBody body); @Override DescribeAutoLiveStreamRuleResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeAutoLiveStreamRuleResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeAutoLiveStreamRuleResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeAutoLiveStreamRuleResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeAutoLiveStreamRuleResponseBody body) { this.body = body; return this; } @Override public DescribeAutoLiveStreamRuleResponse build() { return new DescribeAutoLiveStreamRuleResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeAutoLiveStreamRuleResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeAutoLiveStreamRuleResponseBody} extends {@link TeaModel} * * <p>DescribeAutoLiveStreamRuleResponseBody</p> */ public class DescribeAutoLiveStreamRuleResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Rules") private java.util.List<Rules> rules; private DescribeAutoLiveStreamRuleResponseBody(Builder builder) { this.requestId = builder.requestId; this.rules = builder.rules; } public static Builder builder() { return new Builder(); } public static DescribeAutoLiveStreamRuleResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return rules */ public java.util.List<Rules> getRules() { return this.rules; } public static final class Builder { private String requestId; private java.util.List<Rules> rules; private Builder() { } private Builder(DescribeAutoLiveStreamRuleResponseBody model) { this.requestId = model.requestId; this.rules = model.rules; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Rules. */ public Builder rules(java.util.List<Rules> rules) { this.rules = rules; return this; } public DescribeAutoLiveStreamRuleResponseBody build() { return new DescribeAutoLiveStreamRuleResponseBody(this); } } /** * * {@link DescribeAutoLiveStreamRuleResponseBody} extends {@link TeaModel} * * <p>DescribeAutoLiveStreamRuleResponseBody</p> */ public static class Rules extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallBack") private String callBack; @com.aliyun.core.annotation.NameInMap("ChannelIdPrefixes") private java.util.List<String> channelIdPrefixes; @com.aliyun.core.annotation.NameInMap("ChannelIds") private java.util.List<String> channelIds; @com.aliyun.core.annotation.NameInMap("CreateTime") private String createTime; @com.aliyun.core.annotation.NameInMap("MediaEncode") private Integer mediaEncode; @com.aliyun.core.annotation.NameInMap("PlayDomain") private String playDomain; @com.aliyun.core.annotation.NameInMap("RuleId") private Long ruleId; @com.aliyun.core.annotation.NameInMap("RuleName") private String ruleName; @com.aliyun.core.annotation.NameInMap("Status") private String status; private Rules(Builder builder) { this.callBack = builder.callBack; this.channelIdPrefixes = builder.channelIdPrefixes; this.channelIds = builder.channelIds; this.createTime = builder.createTime; this.mediaEncode = builder.mediaEncode; this.playDomain = builder.playDomain; this.ruleId = builder.ruleId; this.ruleName = builder.ruleName; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static Rules create() { return builder().build(); } /** * @return callBack */ public String getCallBack() { return this.callBack; } /** * @return channelIdPrefixes */ public java.util.List<String> getChannelIdPrefixes() { return this.channelIdPrefixes; } /** * @return channelIds */ public java.util.List<String> getChannelIds() { return this.channelIds; } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return mediaEncode */ public Integer getMediaEncode() { return this.mediaEncode; } /** * @return playDomain */ public String getPlayDomain() { return this.playDomain; } /** * @return ruleId */ public Long getRuleId() { return this.ruleId; } /** * @return ruleName */ public String getRuleName() { return this.ruleName; } /** * @return status */ public String getStatus() { return this.status; } public static final class Builder { private String callBack; private java.util.List<String> channelIdPrefixes; private java.util.List<String> channelIds; private String createTime; private Integer mediaEncode; private String playDomain; private Long ruleId; private String ruleName; private String status; private Builder() { } private Builder(Rules model) { this.callBack = model.callBack; this.channelIdPrefixes = model.channelIdPrefixes; this.channelIds = model.channelIds; this.createTime = model.createTime; this.mediaEncode = model.mediaEncode; this.playDomain = model.playDomain; this.ruleId = model.ruleId; this.ruleName = model.ruleName; this.status = model.status; } /** * CallBack. */ public Builder callBack(String callBack) { this.callBack = callBack; return this; } /** * ChannelIdPrefixes. */ public Builder channelIdPrefixes(java.util.List<String> channelIdPrefixes) { this.channelIdPrefixes = channelIdPrefixes; return this; } /** * ChannelIds. */ public Builder channelIds(java.util.List<String> channelIds) { this.channelIds = channelIds; return this; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * MediaEncode. */ public Builder mediaEncode(Integer mediaEncode) { this.mediaEncode = mediaEncode; return this; } /** * PlayDomain. */ public Builder playDomain(String playDomain) { this.playDomain = playDomain; return this; } /** * RuleId. */ public Builder ruleId(Long ruleId) { this.ruleId = ruleId; return this; } /** * RuleName. */ public Builder ruleName(String ruleName) { this.ruleName = ruleName; return this; } /** * Status. */ public Builder status(String status) { this.status = status; return this; } public Rules build() { return new Rules(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallListRequest} extends {@link RequestModel} * * <p>DescribeCallListRequest</p> */ public class DescribeCallListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") @com.aliyun.core.annotation.Validation(required = true) private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OrderBy") private String orderBy; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNo") @com.aliyun.core.annotation.Validation(required = true) private Integer pageNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(required = true) private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("QueryMode") private String queryMode; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") @com.aliyun.core.annotation.Validation(required = true) private Long startTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private DescribeCallListRequest(Builder builder) { super(builder); this.appId = builder.appId; this.callStatus = builder.callStatus; this.channelId = builder.channelId; this.endTs = builder.endTs; this.orderBy = builder.orderBy; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.queryMode = builder.queryMode; this.startTs = builder.startTs; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static DescribeCallListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return orderBy */ public String getOrderBy() { return this.orderBy; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return queryMode */ public String getQueryMode() { return this.queryMode; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder extends Request.Builder<DescribeCallListRequest, Builder> { private String appId; private String callStatus; private String channelId; private Long endTs; private String orderBy; private Integer pageNo; private Integer pageSize; private String queryMode; private Long startTs; private String userId; private Builder() { super(); } private Builder(DescribeCallListRequest request) { super(request); this.appId = request.appId; this.callStatus = request.callStatus; this.channelId = request.channelId; this.endTs = request.endTs; this.orderBy = request.orderBy; this.pageNo = request.pageNo; this.pageSize = request.pageSize; this.queryMode = request.queryMode; this.startTs = request.startTs; this.userId = request.userId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.putQueryParameter("CallStatus", callStatus); this.callStatus = callStatus; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615892596</p> */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * OrderBy. */ public Builder orderBy(String orderBy) { this.putQueryParameter("OrderBy", orderBy); this.orderBy = orderBy; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder pageNo(Integer pageNo) { this.putQueryParameter("PageNo", pageNo); this.pageNo = pageNo; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * QueryMode. */ public Builder queryMode(String queryMode) { this.putQueryParameter("QueryMode", queryMode); this.queryMode = queryMode; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615806196</p> */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } /** * UserId. */ public Builder userId(String userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public DescribeCallListRequest build() { return new DescribeCallListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallListResponse} extends {@link TeaModel} * * <p>DescribeCallListResponse</p> */ public class DescribeCallListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCallListResponseBody body; private DescribeCallListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCallListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCallListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCallListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCallListResponseBody body); @Override DescribeCallListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCallListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCallListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCallListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCallListResponseBody body) { this.body = body; return this; } @Override public DescribeCallListResponse build() { return new DescribeCallListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallListResponseBody} extends {@link TeaModel} * * <p>DescribeCallListResponseBody</p> */ public class DescribeCallListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallList") private java.util.List<CallList> callList; @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCnt") private Integer totalCnt; private DescribeCallListResponseBody(Builder builder) { this.callList = builder.callList; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCnt = builder.totalCnt; } public static Builder builder() { return new Builder(); } public static DescribeCallListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callList */ public java.util.List<CallList> getCallList() { return this.callList; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCnt */ public Integer getTotalCnt() { return this.totalCnt; } public static final class Builder { private java.util.List<CallList> callList; private Integer pageNo; private Integer pageSize; private String requestId; private Integer totalCnt; private Builder() { } private Builder(DescribeCallListResponseBody model) { this.callList = model.callList; this.pageNo = model.pageNo; this.pageSize = model.pageSize; this.requestId = model.requestId; this.totalCnt = model.totalCnt; } /** * CallList. */ public Builder callList(java.util.List<CallList> callList) { this.callList = callList; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCnt. */ public Builder totalCnt(Integer totalCnt) { this.totalCnt = totalCnt; return this; } public DescribeCallListResponseBody build() { return new DescribeCallListResponseBody(this); } } /** * * {@link DescribeCallListResponseBody} extends {@link TeaModel} * * <p>DescribeCallListResponseBody</p> */ public static class CallList extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("BadExpUserCnt") private Integer badExpUserCnt; @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("UserCnt") private Integer userCnt; private CallList(Builder builder) { this.appId = builder.appId; this.badExpUserCnt = builder.badExpUserCnt; this.callStatus = builder.callStatus; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; this.userCnt = builder.userCnt; } public static Builder builder() { return new Builder(); } public static CallList create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return badExpUserCnt */ public Integer getBadExpUserCnt() { return this.badExpUserCnt; } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return userCnt */ public Integer getUserCnt() { return this.userCnt; } public static final class Builder { private String appId; private Integer badExpUserCnt; private String callStatus; private String channelId; private Long createdTs; private Long destroyedTs; private Long duration; private Integer userCnt; private Builder() { } private Builder(CallList model) { this.appId = model.appId; this.badExpUserCnt = model.badExpUserCnt; this.callStatus = model.callStatus; this.channelId = model.channelId; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; this.userCnt = model.userCnt; } /** * <p>App ID。</p> * * <strong>example:</strong> * <p>9qb1****</p> */ public Builder appId(String appId) { this.appId = appId; return this; } /** * BadExpUserCnt. */ public Builder badExpUserCnt(Integer badExpUserCnt) { this.badExpUserCnt = badExpUserCnt; return this; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.callStatus = callStatus; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * UserCnt. */ public Builder userCnt(Integer userCnt) { this.userCnt = userCnt; return this; } public CallList build() { return new CallList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallRequest} extends {@link RequestModel} * * <p>DescribeCallRequest</p> */ public class DescribeCallRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ExtDataType") private String extDataType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("QueryExpInfo") private Boolean queryExpInfo; private DescribeCallRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.extDataType = builder.extDataType; this.queryExpInfo = builder.queryExpInfo; } public static Builder builder() { return new Builder(); } public static DescribeCallRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return extDataType */ public String getExtDataType() { return this.extDataType; } /** * @return queryExpInfo */ public Boolean getQueryExpInfo() { return this.queryExpInfo; } public static final class Builder extends Request.Builder<DescribeCallRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String extDataType; private Boolean queryExpInfo; private Builder() { super(); } private Builder(DescribeCallRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.extDataType = request.extDataType; this.queryExpInfo = request.queryExpInfo; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * ExtDataType. */ public Builder extDataType(String extDataType) { this.putQueryParameter("ExtDataType", extDataType); this.extDataType = extDataType; return this; } /** * QueryExpInfo. */ public Builder queryExpInfo(Boolean queryExpInfo) { this.putQueryParameter("QueryExpInfo", queryExpInfo); this.queryExpInfo = queryExpInfo; return this; } @Override public DescribeCallRequest build() { return new DescribeCallRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallResponse} extends {@link TeaModel} * * <p>DescribeCallResponse</p> */ public class DescribeCallResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCallResponseBody body; private DescribeCallResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCallResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCallResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCallResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCallResponseBody body); @Override DescribeCallResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCallResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCallResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCallResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCallResponseBody body) { this.body = body; return this; } @Override public DescribeCallResponse build() { return new DescribeCallResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallResponseBody} extends {@link TeaModel} * * <p>DescribeCallResponseBody</p> */ public class DescribeCallResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallInfo") private CallInfo callInfo; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("UserDetailList") private java.util.List<UserDetailList> userDetailList; private DescribeCallResponseBody(Builder builder) { this.callInfo = builder.callInfo; this.requestId = builder.requestId; this.userDetailList = builder.userDetailList; } public static Builder builder() { return new Builder(); } public static DescribeCallResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callInfo */ public CallInfo getCallInfo() { return this.callInfo; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return userDetailList */ public java.util.List<UserDetailList> getUserDetailList() { return this.userDetailList; } public static final class Builder { private CallInfo callInfo; private String requestId; private java.util.List<UserDetailList> userDetailList; private Builder() { } private Builder(DescribeCallResponseBody model) { this.callInfo = model.callInfo; this.requestId = model.requestId; this.userDetailList = model.userDetailList; } /** * CallInfo. */ public Builder callInfo(CallInfo callInfo) { this.callInfo = callInfo; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * UserDetailList. */ public Builder userDetailList(java.util.List<UserDetailList> userDetailList) { this.userDetailList = userDetailList; return this; } public DescribeCallResponseBody build() { return new DescribeCallResponseBody(this); } } /** * * {@link DescribeCallResponseBody} extends {@link TeaModel} * * <p>DescribeCallResponseBody</p> */ public static class CallInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; private CallInfo(Builder builder) { this.appId = builder.appId; this.callStatus = builder.callStatus; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; } public static Builder builder() { return new Builder(); } public static CallInfo create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } public static final class Builder { private String appId; private String callStatus; private String channelId; private Long createdTs; private Long destroyedTs; private Long duration; private Builder() { } private Builder(CallInfo model) { this.appId = model.appId; this.callStatus = model.callStatus; this.channelId = model.channelId; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; } /** * <p>App ID。</p> * * <strong>example:</strong> * <p>xxxxxxxx</p> */ public Builder appId(String appId) { this.appId = appId; return this; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.callStatus = callStatus; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } public CallInfo build() { return new CallInfo(this); } } } /** * * {@link DescribeCallResponseBody} extends {@link TeaModel} * * <p>DescribeCallResponseBody</p> */ public static class DurMetricStatData extends TeaModel { @com.aliyun.core.annotation.NameInMap("PubAudio") private Long pubAudio; @com.aliyun.core.annotation.NameInMap("PubVideo1080") private Long pubVideo1080; @com.aliyun.core.annotation.NameInMap("PubVideo360") private Long pubVideo360; @com.aliyun.core.annotation.NameInMap("PubVideo720") private Long pubVideo720; @com.aliyun.core.annotation.NameInMap("PubVideoScreenShare") private Long pubVideoScreenShare; @com.aliyun.core.annotation.NameInMap("SubAudio") private Long subAudio; @com.aliyun.core.annotation.NameInMap("SubVideo1080") private Long subVideo1080; @com.aliyun.core.annotation.NameInMap("SubVideo360") private Long subVideo360; @com.aliyun.core.annotation.NameInMap("SubVideo720") private Long subVideo720; @com.aliyun.core.annotation.NameInMap("SubVideoScreenShare") private Long subVideoScreenShare; private DurMetricStatData(Builder builder) { this.pubAudio = builder.pubAudio; this.pubVideo1080 = builder.pubVideo1080; this.pubVideo360 = builder.pubVideo360; this.pubVideo720 = builder.pubVideo720; this.pubVideoScreenShare = builder.pubVideoScreenShare; this.subAudio = builder.subAudio; this.subVideo1080 = builder.subVideo1080; this.subVideo360 = builder.subVideo360; this.subVideo720 = builder.subVideo720; this.subVideoScreenShare = builder.subVideoScreenShare; } public static Builder builder() { return new Builder(); } public static DurMetricStatData create() { return builder().build(); } /** * @return pubAudio */ public Long getPubAudio() { return this.pubAudio; } /** * @return pubVideo1080 */ public Long getPubVideo1080() { return this.pubVideo1080; } /** * @return pubVideo360 */ public Long getPubVideo360() { return this.pubVideo360; } /** * @return pubVideo720 */ public Long getPubVideo720() { return this.pubVideo720; } /** * @return pubVideoScreenShare */ public Long getPubVideoScreenShare() { return this.pubVideoScreenShare; } /** * @return subAudio */ public Long getSubAudio() { return this.subAudio; } /** * @return subVideo1080 */ public Long getSubVideo1080() { return this.subVideo1080; } /** * @return subVideo360 */ public Long getSubVideo360() { return this.subVideo360; } /** * @return subVideo720 */ public Long getSubVideo720() { return this.subVideo720; } /** * @return subVideoScreenShare */ public Long getSubVideoScreenShare() { return this.subVideoScreenShare; } public static final class Builder { private Long pubAudio; private Long pubVideo1080; private Long pubVideo360; private Long pubVideo720; private Long pubVideoScreenShare; private Long subAudio; private Long subVideo1080; private Long subVideo360; private Long subVideo720; private Long subVideoScreenShare; private Builder() { } private Builder(DurMetricStatData model) { this.pubAudio = model.pubAudio; this.pubVideo1080 = model.pubVideo1080; this.pubVideo360 = model.pubVideo360; this.pubVideo720 = model.pubVideo720; this.pubVideoScreenShare = model.pubVideoScreenShare; this.subAudio = model.subAudio; this.subVideo1080 = model.subVideo1080; this.subVideo360 = model.subVideo360; this.subVideo720 = model.subVideo720; this.subVideoScreenShare = model.subVideoScreenShare; } /** * PubAudio. */ public Builder pubAudio(Long pubAudio) { this.pubAudio = pubAudio; return this; } /** * PubVideo1080. */ public Builder pubVideo1080(Long pubVideo1080) { this.pubVideo1080 = pubVideo1080; return this; } /** * PubVideo360. */ public Builder pubVideo360(Long pubVideo360) { this.pubVideo360 = pubVideo360; return this; } /** * PubVideo720. */ public Builder pubVideo720(Long pubVideo720) { this.pubVideo720 = pubVideo720; return this; } /** * PubVideoScreenShare. */ public Builder pubVideoScreenShare(Long pubVideoScreenShare) { this.pubVideoScreenShare = pubVideoScreenShare; return this; } /** * SubAudio. */ public Builder subAudio(Long subAudio) { this.subAudio = subAudio; return this; } /** * SubVideo1080. */ public Builder subVideo1080(Long subVideo1080) { this.subVideo1080 = subVideo1080; return this; } /** * SubVideo360. */ public Builder subVideo360(Long subVideo360) { this.subVideo360 = subVideo360; return this; } /** * SubVideo720. */ public Builder subVideo720(Long subVideo720) { this.subVideo720 = subVideo720; return this; } /** * SubVideoScreenShare. */ public Builder subVideoScreenShare(Long subVideoScreenShare) { this.subVideoScreenShare = subVideoScreenShare; return this; } public DurMetricStatData build() { return new DurMetricStatData(this); } } } /** * * {@link DescribeCallResponseBody} extends {@link TeaModel} * * <p>DescribeCallResponseBody</p> */ public static class OnlinePeriods extends TeaModel { @com.aliyun.core.annotation.NameInMap("JoinTs") private Long joinTs; @com.aliyun.core.annotation.NameInMap("LeaveTs") private Long leaveTs; private OnlinePeriods(Builder builder) { this.joinTs = builder.joinTs; this.leaveTs = builder.leaveTs; } public static Builder builder() { return new Builder(); } public static OnlinePeriods create() { return builder().build(); } /** * @return joinTs */ public Long getJoinTs() { return this.joinTs; } /** * @return leaveTs */ public Long getLeaveTs() { return this.leaveTs; } public static final class Builder { private Long joinTs; private Long leaveTs; private Builder() { } private Builder(OnlinePeriods model) { this.joinTs = model.joinTs; this.leaveTs = model.leaveTs; } /** * JoinTs. */ public Builder joinTs(Long joinTs) { this.joinTs = joinTs; return this; } /** * LeaveTs. */ public Builder leaveTs(Long leaveTs) { this.leaveTs = leaveTs; return this; } public OnlinePeriods build() { return new OnlinePeriods(this); } } } /** * * {@link DescribeCallResponseBody} extends {@link TeaModel} * * <p>DescribeCallResponseBody</p> */ public static class UserDetailList extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallExp") private String callExp; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("DurMetricStatData") private DurMetricStatData durMetricStatData; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("Location") private String location; @com.aliyun.core.annotation.NameInMap("Network") private String network; @com.aliyun.core.annotation.NameInMap("NetworkList") private java.util.List<String> networkList; @com.aliyun.core.annotation.NameInMap("OnlineDuration") private Long onlineDuration; @com.aliyun.core.annotation.NameInMap("OnlinePeriods") private java.util.List<OnlinePeriods> onlinePeriods; @com.aliyun.core.annotation.NameInMap("Os") private String os; @com.aliyun.core.annotation.NameInMap("OsList") private java.util.List<String> osList; @com.aliyun.core.annotation.NameInMap("Roles") private java.util.List<String> roles; @com.aliyun.core.annotation.NameInMap("SdkVersion") private String sdkVersion; @com.aliyun.core.annotation.NameInMap("SdkVersionList") private java.util.List<String> sdkVersionList; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private UserDetailList(Builder builder) { this.callExp = builder.callExp; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.durMetricStatData = builder.durMetricStatData; this.duration = builder.duration; this.location = builder.location; this.network = builder.network; this.networkList = builder.networkList; this.onlineDuration = builder.onlineDuration; this.onlinePeriods = builder.onlinePeriods; this.os = builder.os; this.osList = builder.osList; this.roles = builder.roles; this.sdkVersion = builder.sdkVersion; this.sdkVersionList = builder.sdkVersionList; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static UserDetailList create() { return builder().build(); } /** * @return callExp */ public String getCallExp() { return this.callExp; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return durMetricStatData */ public DurMetricStatData getDurMetricStatData() { return this.durMetricStatData; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return location */ public String getLocation() { return this.location; } /** * @return network */ public String getNetwork() { return this.network; } /** * @return networkList */ public java.util.List<String> getNetworkList() { return this.networkList; } /** * @return onlineDuration */ public Long getOnlineDuration() { return this.onlineDuration; } /** * @return onlinePeriods */ public java.util.List<OnlinePeriods> getOnlinePeriods() { return this.onlinePeriods; } /** * @return os */ public String getOs() { return this.os; } /** * @return osList */ public java.util.List<String> getOsList() { return this.osList; } /** * @return roles */ public java.util.List<String> getRoles() { return this.roles; } /** * @return sdkVersion */ public String getSdkVersion() { return this.sdkVersion; } /** * @return sdkVersionList */ public java.util.List<String> getSdkVersionList() { return this.sdkVersionList; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private String callExp; private Long createdTs; private Long destroyedTs; private DurMetricStatData durMetricStatData; private Long duration; private String location; private String network; private java.util.List<String> networkList; private Long onlineDuration; private java.util.List<OnlinePeriods> onlinePeriods; private String os; private java.util.List<String> osList; private java.util.List<String> roles; private String sdkVersion; private java.util.List<String> sdkVersionList; private String userId; private Builder() { } private Builder(UserDetailList model) { this.callExp = model.callExp; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.durMetricStatData = model.durMetricStatData; this.duration = model.duration; this.location = model.location; this.network = model.network; this.networkList = model.networkList; this.onlineDuration = model.onlineDuration; this.onlinePeriods = model.onlinePeriods; this.os = model.os; this.osList = model.osList; this.roles = model.roles; this.sdkVersion = model.sdkVersion; this.sdkVersionList = model.sdkVersionList; this.userId = model.userId; } /** * CallExp. */ public Builder callExp(String callExp) { this.callExp = callExp; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * DurMetricStatData. */ public Builder durMetricStatData(DurMetricStatData durMetricStatData) { this.durMetricStatData = durMetricStatData; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * Location. */ public Builder location(String location) { this.location = location; return this; } /** * Network. */ public Builder network(String network) { this.network = network; return this; } /** * NetworkList. */ public Builder networkList(java.util.List<String> networkList) { this.networkList = networkList; return this; } /** * OnlineDuration. */ public Builder onlineDuration(Long onlineDuration) { this.onlineDuration = onlineDuration; return this; } /** * OnlinePeriods. */ public Builder onlinePeriods(java.util.List<OnlinePeriods> onlinePeriods) { this.onlinePeriods = onlinePeriods; return this; } /** * Os. */ public Builder os(String os) { this.os = os; return this; } /** * OsList. */ public Builder osList(java.util.List<String> osList) { this.osList = osList; return this; } /** * Roles. */ public Builder roles(java.util.List<String> roles) { this.roles = roles; return this; } /** * SdkVersion. */ public Builder sdkVersion(String sdkVersion) { this.sdkVersion = sdkVersion; return this; } /** * SdkVersionList. */ public Builder sdkVersionList(java.util.List<String> sdkVersionList) { this.sdkVersionList = sdkVersionList; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public UserDetailList build() { return new UserDetailList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallbacksRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallbacksRequest} extends {@link RequestModel} * * <p>DescribeCallbacksRequest</p> */ public class DescribeCallbacksRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; private DescribeCallbacksRequest(Builder builder) { super(builder); this.appId = builder.appId; } public static Builder builder() { return new Builder(); } public static DescribeCallbacksRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } public static final class Builder extends Request.Builder<DescribeCallbacksRequest, Builder> { private String appId; private Builder() { super(); } private Builder(DescribeCallbacksRequest request) { super(request); this.appId = request.appId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>223***JQb</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } @Override public DescribeCallbacksRequest build() { return new DescribeCallbacksRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallbacksResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallbacksResponse} extends {@link TeaModel} * * <p>DescribeCallbacksResponse</p> */ public class DescribeCallbacksResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCallbacksResponseBody body; private DescribeCallbacksResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCallbacksResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCallbacksResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCallbacksResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCallbacksResponseBody body); @Override DescribeCallbacksResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCallbacksResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCallbacksResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCallbacksResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCallbacksResponseBody body) { this.body = body; return this; } @Override public DescribeCallbacksResponse build() { return new DescribeCallbacksResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCallbacksResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCallbacksResponseBody} extends {@link TeaModel} * * <p>DescribeCallbacksResponseBody</p> */ public class DescribeCallbacksResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Callbacks") private java.util.List<Callbacks> callbacks; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeCallbacksResponseBody(Builder builder) { this.callbacks = builder.callbacks; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeCallbacksResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callbacks */ public java.util.List<Callbacks> getCallbacks() { return this.callbacks; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<Callbacks> callbacks; private String requestId; private Builder() { } private Builder(DescribeCallbacksResponseBody model) { this.callbacks = model.callbacks; this.requestId = model.requestId; } /** * Callbacks. */ public Builder callbacks(java.util.List<Callbacks> callbacks) { this.callbacks = callbacks; return this; } /** * <p>Id of the request</p> * * <strong>example:</strong> * <p>16A96B9A-F203-4EC5-8E43-CB92E68F4CD8</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeCallbacksResponseBody build() { return new DescribeCallbacksResponseBody(this); } } /** * * {@link DescribeCallbacksResponseBody} extends {@link TeaModel} * * <p>DescribeCallbacksResponseBody</p> */ public static class Callbacks extends TeaModel { @com.aliyun.core.annotation.NameInMap("Category") private String category; @com.aliyun.core.annotation.NameInMap("CheckStatus") private String checkStatus; @com.aliyun.core.annotation.NameInMap("Code") private String code; @com.aliyun.core.annotation.NameInMap("Conf") private String conf; @com.aliyun.core.annotation.NameInMap("Msg") private String msg; @com.aliyun.core.annotation.NameInMap("Status") private Integer status; @com.aliyun.core.annotation.NameInMap("SubEvent") private java.util.List<Integer> subEvent; private Callbacks(Builder builder) { this.category = builder.category; this.checkStatus = builder.checkStatus; this.code = builder.code; this.conf = builder.conf; this.msg = builder.msg; this.status = builder.status; this.subEvent = builder.subEvent; } public static Builder builder() { return new Builder(); } public static Callbacks create() { return builder().build(); } /** * @return category */ public String getCategory() { return this.category; } /** * @return checkStatus */ public String getCheckStatus() { return this.checkStatus; } /** * @return code */ public String getCode() { return this.code; } /** * @return conf */ public String getConf() { return this.conf; } /** * @return msg */ public String getMsg() { return this.msg; } /** * @return status */ public Integer getStatus() { return this.status; } /** * @return subEvent */ public java.util.List<Integer> getSubEvent() { return this.subEvent; } public static final class Builder { private String category; private String checkStatus; private String code; private String conf; private String msg; private Integer status; private java.util.List<Integer> subEvent; private Builder() { } private Builder(Callbacks model) { this.category = model.category; this.checkStatus = model.checkStatus; this.code = model.code; this.conf = model.conf; this.msg = model.msg; this.status = model.status; this.subEvent = model.subEvent; } /** * Category. */ public Builder category(String category) { this.category = category; return this; } /** * CheckStatus. */ public Builder checkStatus(String checkStatus) { this.checkStatus = checkStatus; return this; } /** * Code. */ public Builder code(String code) { this.code = code; return this; } /** * Conf. */ public Builder conf(String conf) { this.conf = conf; return this; } /** * Msg. */ public Builder msg(String msg) { this.msg = msg; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } /** * SubEvent. */ public Builder subEvent(java.util.List<Integer> subEvent) { this.subEvent = subEvent; return this; } public Callbacks build() { return new Callbacks(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAllUsersRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAllUsersRequest} extends {@link RequestModel} * * <p>DescribeChannelAllUsersRequest</p> */ public class DescribeChannelAllUsersRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; private DescribeChannelAllUsersRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; } public static Builder builder() { return new Builder(); } public static DescribeChannelAllUsersRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } public static final class Builder extends Request.Builder<DescribeChannelAllUsersRequest, Builder> { private String appId; private String channelId; private Builder() { super(); } private Builder(DescribeChannelAllUsersRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eo85****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } @Override public DescribeChannelAllUsersRequest build() { return new DescribeChannelAllUsersRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAllUsersResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAllUsersResponse} extends {@link TeaModel} * * <p>DescribeChannelAllUsersResponse</p> */ public class DescribeChannelAllUsersResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelAllUsersResponseBody body; private DescribeChannelAllUsersResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelAllUsersResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelAllUsersResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelAllUsersResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelAllUsersResponseBody body); @Override DescribeChannelAllUsersResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelAllUsersResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelAllUsersResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelAllUsersResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelAllUsersResponseBody body) { this.body = body; return this; } @Override public DescribeChannelAllUsersResponse build() { return new DescribeChannelAllUsersResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAllUsersResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAllUsersResponseBody} extends {@link TeaModel} * * <p>DescribeChannelAllUsersResponseBody</p> */ public class DescribeChannelAllUsersResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ChannelExist") private Boolean channelExist; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Users") private java.util.List<Users> users; private DescribeChannelAllUsersResponseBody(Builder builder) { this.channelExist = builder.channelExist; this.requestId = builder.requestId; this.users = builder.users; } public static Builder builder() { return new Builder(); } public static DescribeChannelAllUsersResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return channelExist */ public Boolean getChannelExist() { return this.channelExist; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return users */ public java.util.List<Users> getUsers() { return this.users; } public static final class Builder { private Boolean channelExist; private String requestId; private java.util.List<Users> users; private Builder() { } private Builder(DescribeChannelAllUsersResponseBody model) { this.channelExist = model.channelExist; this.requestId = model.requestId; this.users = model.users; } /** * ChannelExist. */ public Builder channelExist(Boolean channelExist) { this.channelExist = channelExist; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Users. */ public Builder users(java.util.List<Users> users) { this.users = users; return this; } public DescribeChannelAllUsersResponseBody build() { return new DescribeChannelAllUsersResponseBody(this); } } /** * * {@link DescribeChannelAllUsersResponseBody} extends {@link TeaModel} * * <p>DescribeChannelAllUsersResponseBody</p> */ public static class Users extends TeaModel { @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private Users(Builder builder) { this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static Users create() { return builder().build(); } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private String userId; private Builder() { } private Builder(Users model) { this.userId = model.userId; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public Users build() { return new Users(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAreaDistributionStatDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAreaDistributionStatDataRequest} extends {@link RequestModel} * * <p>DescribeChannelAreaDistributionStatDataRequest</p> */ public class DescribeChannelAreaDistributionStatDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ParentArea") private String parentArea; private DescribeChannelAreaDistributionStatDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.parentArea = builder.parentArea; } public static Builder builder() { return new Builder(); } public static DescribeChannelAreaDistributionStatDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return parentArea */ public String getParentArea() { return this.parentArea; } public static final class Builder extends Request.Builder<DescribeChannelAreaDistributionStatDataRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String parentArea; private Builder() { super(); } private Builder(DescribeChannelAreaDistributionStatDataRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.parentArea = request.parentArea; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * ParentArea. */ public Builder parentArea(String parentArea) { this.putQueryParameter("ParentArea", parentArea); this.parentArea = parentArea; return this; } @Override public DescribeChannelAreaDistributionStatDataRequest build() { return new DescribeChannelAreaDistributionStatDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAreaDistributionStatDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAreaDistributionStatDataResponse} extends {@link TeaModel} * * <p>DescribeChannelAreaDistributionStatDataResponse</p> */ public class DescribeChannelAreaDistributionStatDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelAreaDistributionStatDataResponseBody body; private DescribeChannelAreaDistributionStatDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelAreaDistributionStatDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelAreaDistributionStatDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelAreaDistributionStatDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelAreaDistributionStatDataResponseBody body); @Override DescribeChannelAreaDistributionStatDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelAreaDistributionStatDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelAreaDistributionStatDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelAreaDistributionStatDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelAreaDistributionStatDataResponseBody body) { this.body = body; return this; } @Override public DescribeChannelAreaDistributionStatDataResponse build() { return new DescribeChannelAreaDistributionStatDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelAreaDistributionStatDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelAreaDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelAreaDistributionStatDataResponseBody</p> */ public class DescribeChannelAreaDistributionStatDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AreaStatList") private java.util.List<AreaStatList> areaStatList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeChannelAreaDistributionStatDataResponseBody(Builder builder) { this.areaStatList = builder.areaStatList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeChannelAreaDistributionStatDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return areaStatList */ public java.util.List<AreaStatList> getAreaStatList() { return this.areaStatList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<AreaStatList> areaStatList; private String requestId; private Builder() { } private Builder(DescribeChannelAreaDistributionStatDataResponseBody model) { this.areaStatList = model.areaStatList; this.requestId = model.requestId; } /** * AreaStatList. */ public Builder areaStatList(java.util.List<AreaStatList> areaStatList) { this.areaStatList = areaStatList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeChannelAreaDistributionStatDataResponseBody build() { return new DescribeChannelAreaDistributionStatDataResponseBody(this); } } /** * * {@link DescribeChannelAreaDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelAreaDistributionStatDataResponseBody</p> */ public static class AreaStatList extends TeaModel { @com.aliyun.core.annotation.NameInMap("AreaName") private String areaName; @com.aliyun.core.annotation.NameInMap("CallUserCount") private Integer callUserCount; @com.aliyun.core.annotation.NameInMap("HighQualityTransmissionRate") private String highQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("PubUserCount") private Integer pubUserCount; @com.aliyun.core.annotation.NameInMap("SubUserCount") private Integer subUserCount; private AreaStatList(Builder builder) { this.areaName = builder.areaName; this.callUserCount = builder.callUserCount; this.highQualityTransmissionRate = builder.highQualityTransmissionRate; this.pubUserCount = builder.pubUserCount; this.subUserCount = builder.subUserCount; } public static Builder builder() { return new Builder(); } public static AreaStatList create() { return builder().build(); } /** * @return areaName */ public String getAreaName() { return this.areaName; } /** * @return callUserCount */ public Integer getCallUserCount() { return this.callUserCount; } /** * @return highQualityTransmissionRate */ public String getHighQualityTransmissionRate() { return this.highQualityTransmissionRate; } /** * @return pubUserCount */ public Integer getPubUserCount() { return this.pubUserCount; } /** * @return subUserCount */ public Integer getSubUserCount() { return this.subUserCount; } public static final class Builder { private String areaName; private Integer callUserCount; private String highQualityTransmissionRate; private Integer pubUserCount; private Integer subUserCount; private Builder() { } private Builder(AreaStatList model) { this.areaName = model.areaName; this.callUserCount = model.callUserCount; this.highQualityTransmissionRate = model.highQualityTransmissionRate; this.pubUserCount = model.pubUserCount; this.subUserCount = model.subUserCount; } /** * AreaName. */ public Builder areaName(String areaName) { this.areaName = areaName; return this; } /** * CallUserCount. */ public Builder callUserCount(Integer callUserCount) { this.callUserCount = callUserCount; return this; } /** * HighQualityTransmissionRate. */ public Builder highQualityTransmissionRate(String highQualityTransmissionRate) { this.highQualityTransmissionRate = highQualityTransmissionRate; return this; } /** * PubUserCount. */ public Builder pubUserCount(Integer pubUserCount) { this.pubUserCount = pubUserCount; return this; } /** * SubUserCount. */ public Builder subUserCount(Integer subUserCount) { this.subUserCount = subUserCount; return this; } public AreaStatList build() { return new AreaStatList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelDistributionStatDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelDistributionStatDataRequest} extends {@link RequestModel} * * <p>DescribeChannelDistributionStatDataRequest</p> */ public class DescribeChannelDistributionStatDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StatDim") @com.aliyun.core.annotation.Validation(required = true) private String statDim; private DescribeChannelDistributionStatDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.statDim = builder.statDim; } public static Builder builder() { return new Builder(); } public static DescribeChannelDistributionStatDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return statDim */ public String getStatDim() { return this.statDim; } public static final class Builder extends Request.Builder<DescribeChannelDistributionStatDataRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String statDim; private Builder() { super(); } private Builder(DescribeChannelDistributionStatDataRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.statDim = request.statDim; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>OS</p> */ public Builder statDim(String statDim) { this.putQueryParameter("StatDim", statDim); this.statDim = statDim; return this; } @Override public DescribeChannelDistributionStatDataRequest build() { return new DescribeChannelDistributionStatDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelDistributionStatDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelDistributionStatDataResponse} extends {@link TeaModel} * * <p>DescribeChannelDistributionStatDataResponse</p> */ public class DescribeChannelDistributionStatDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelDistributionStatDataResponseBody body; private DescribeChannelDistributionStatDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelDistributionStatDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelDistributionStatDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelDistributionStatDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelDistributionStatDataResponseBody body); @Override DescribeChannelDistributionStatDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelDistributionStatDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelDistributionStatDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelDistributionStatDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelDistributionStatDataResponseBody body) { this.body = body; return this; } @Override public DescribeChannelDistributionStatDataResponse build() { return new DescribeChannelDistributionStatDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelDistributionStatDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelDistributionStatDataResponseBody</p> */ public class DescribeChannelDistributionStatDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("StatList") private java.util.List<StatList> statList; private DescribeChannelDistributionStatDataResponseBody(Builder builder) { this.requestId = builder.requestId; this.statList = builder.statList; } public static Builder builder() { return new Builder(); } public static DescribeChannelDistributionStatDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return statList */ public java.util.List<StatList> getStatList() { return this.statList; } public static final class Builder { private String requestId; private java.util.List<StatList> statList; private Builder() { } private Builder(DescribeChannelDistributionStatDataResponseBody model) { this.requestId = model.requestId; this.statList = model.statList; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * StatList. */ public Builder statList(java.util.List<StatList> statList) { this.statList = statList; return this; } public DescribeChannelDistributionStatDataResponseBody build() { return new DescribeChannelDistributionStatDataResponseBody(this); } } /** * * {@link DescribeChannelDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelDistributionStatDataResponseBody</p> */ public static class StatList extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallUserCount") private Integer callUserCount; @com.aliyun.core.annotation.NameInMap("CallUserRatio") private String callUserRatio; @com.aliyun.core.annotation.NameInMap("Name") private String name; private StatList(Builder builder) { this.callUserCount = builder.callUserCount; this.callUserRatio = builder.callUserRatio; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static StatList create() { return builder().build(); } /** * @return callUserCount */ public Integer getCallUserCount() { return this.callUserCount; } /** * @return callUserRatio */ public String getCallUserRatio() { return this.callUserRatio; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private Integer callUserCount; private String callUserRatio; private String name; private Builder() { } private Builder(StatList model) { this.callUserCount = model.callUserCount; this.callUserRatio = model.callUserRatio; this.name = model.name; } /** * CallUserCount. */ public Builder callUserCount(Integer callUserCount) { this.callUserCount = callUserCount; return this; } /** * CallUserRatio. */ public Builder callUserRatio(String callUserRatio) { this.callUserRatio = callUserRatio; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public StatList build() { return new StatList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelOverallDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelOverallDataRequest} extends {@link RequestModel} * * <p>DescribeChannelOverallDataRequest</p> */ public class DescribeChannelOverallDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; private DescribeChannelOverallDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; } public static Builder builder() { return new Builder(); } public static DescribeChannelOverallDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } public static final class Builder extends Request.Builder<DescribeChannelOverallDataRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private Builder() { super(); } private Builder(DescribeChannelOverallDataRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615893133</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } @Override public DescribeChannelOverallDataRequest build() { return new DescribeChannelOverallDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelOverallDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelOverallDataResponse} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponse</p> */ public class DescribeChannelOverallDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelOverallDataResponseBody body; private DescribeChannelOverallDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelOverallDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelOverallDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelOverallDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelOverallDataResponseBody body); @Override DescribeChannelOverallDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelOverallDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelOverallDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelOverallDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelOverallDataResponseBody body) { this.body = body; return this; } @Override public DescribeChannelOverallDataResponse build() { return new DescribeChannelOverallDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelOverallDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponseBody</p> */ public class DescribeChannelOverallDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallInfo") private CallInfo callInfo; @com.aliyun.core.annotation.NameInMap("MetricDatas") private java.util.List<MetricDatas> metricDatas; @com.aliyun.core.annotation.NameInMap("OverallData") private OverallData overallData; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeChannelOverallDataResponseBody(Builder builder) { this.callInfo = builder.callInfo; this.metricDatas = builder.metricDatas; this.overallData = builder.overallData; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeChannelOverallDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callInfo */ public CallInfo getCallInfo() { return this.callInfo; } /** * @return metricDatas */ public java.util.List<MetricDatas> getMetricDatas() { return this.metricDatas; } /** * @return overallData */ public OverallData getOverallData() { return this.overallData; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private CallInfo callInfo; private java.util.List<MetricDatas> metricDatas; private OverallData overallData; private String requestId; private Builder() { } private Builder(DescribeChannelOverallDataResponseBody model) { this.callInfo = model.callInfo; this.metricDatas = model.metricDatas; this.overallData = model.overallData; this.requestId = model.requestId; } /** * CallInfo. */ public Builder callInfo(CallInfo callInfo) { this.callInfo = callInfo; return this; } /** * MetricDatas. */ public Builder metricDatas(java.util.List<MetricDatas> metricDatas) { this.metricDatas = metricDatas; return this; } /** * OverallData. */ public Builder overallData(OverallData overallData) { this.overallData = overallData; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeChannelOverallDataResponseBody build() { return new DescribeChannelOverallDataResponseBody(this); } } /** * * {@link DescribeChannelOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponseBody</p> */ public static class CallInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; private CallInfo(Builder builder) { this.appId = builder.appId; this.callStatus = builder.callStatus; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; } public static Builder builder() { return new Builder(); } public static CallInfo create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } public static final class Builder { private String appId; private String callStatus; private String channelId; private Long createdTs; private Long destroyedTs; private Long duration; private Builder() { } private Builder(CallInfo model) { this.appId = model.appId; this.callStatus = model.callStatus; this.channelId = model.channelId; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; } /** * AppId. */ public Builder appId(String appId) { this.appId = appId; return this; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.callStatus = callStatus; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } public CallInfo build() { return new CallInfo(this); } } } /** * * {@link DescribeChannelOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(Nodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeChannelOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponseBody</p> */ public static class MetricDatas extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; private MetricDatas(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MetricDatas create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private java.util.List<Nodes> nodes; private String type; private Builder() { } private Builder(MetricDatas model) { this.nodes = model.nodes; this.type = model.type; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public MetricDatas build() { return new MetricDatas(this); } } } /** * * {@link DescribeChannelOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeChannelOverallDataResponseBody</p> */ public static class OverallData extends TeaModel { @com.aliyun.core.annotation.NameInMap("ConnAvgTime") private Float connAvgTime; @com.aliyun.core.annotation.NameInMap("FiveSecJoinRate") private Float fiveSecJoinRate; @com.aliyun.core.annotation.NameInMap("TotalAudioStuckRate") private Float totalAudioStuckRate; @com.aliyun.core.annotation.NameInMap("TotalVideoStuckRate") private Float totalVideoStuckRate; @com.aliyun.core.annotation.NameInMap("TotalVideoVagueRate") private Float totalVideoVagueRate; private OverallData(Builder builder) { this.connAvgTime = builder.connAvgTime; this.fiveSecJoinRate = builder.fiveSecJoinRate; this.totalAudioStuckRate = builder.totalAudioStuckRate; this.totalVideoStuckRate = builder.totalVideoStuckRate; this.totalVideoVagueRate = builder.totalVideoVagueRate; } public static Builder builder() { return new Builder(); } public static OverallData create() { return builder().build(); } /** * @return connAvgTime */ public Float getConnAvgTime() { return this.connAvgTime; } /** * @return fiveSecJoinRate */ public Float getFiveSecJoinRate() { return this.fiveSecJoinRate; } /** * @return totalAudioStuckRate */ public Float getTotalAudioStuckRate() { return this.totalAudioStuckRate; } /** * @return totalVideoStuckRate */ public Float getTotalVideoStuckRate() { return this.totalVideoStuckRate; } /** * @return totalVideoVagueRate */ public Float getTotalVideoVagueRate() { return this.totalVideoVagueRate; } public static final class Builder { private Float connAvgTime; private Float fiveSecJoinRate; private Float totalAudioStuckRate; private Float totalVideoStuckRate; private Float totalVideoVagueRate; private Builder() { } private Builder(OverallData model) { this.connAvgTime = model.connAvgTime; this.fiveSecJoinRate = model.fiveSecJoinRate; this.totalAudioStuckRate = model.totalAudioStuckRate; this.totalVideoStuckRate = model.totalVideoStuckRate; this.totalVideoVagueRate = model.totalVideoVagueRate; } /** * ConnAvgTime. */ public Builder connAvgTime(Float connAvgTime) { this.connAvgTime = connAvgTime; return this; } /** * FiveSecJoinRate. */ public Builder fiveSecJoinRate(Float fiveSecJoinRate) { this.fiveSecJoinRate = fiveSecJoinRate; return this; } /** * TotalAudioStuckRate. */ public Builder totalAudioStuckRate(Float totalAudioStuckRate) { this.totalAudioStuckRate = totalAudioStuckRate; return this; } /** * TotalVideoStuckRate. */ public Builder totalVideoStuckRate(Float totalVideoStuckRate) { this.totalVideoStuckRate = totalVideoStuckRate; return this; } /** * TotalVideoVagueRate. */ public Builder totalVideoVagueRate(Float totalVideoVagueRate) { this.totalVideoVagueRate = totalVideoVagueRate; return this; } public OverallData build() { return new OverallData(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelParticipantsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelParticipantsRequest} extends {@link RequestModel} * * <p>DescribeChannelParticipantsRequest</p> */ public class DescribeChannelParticipantsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Order") private String order; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNum") private Integer pageNum; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; private DescribeChannelParticipantsRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.order = builder.order; this.ownerId = builder.ownerId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeChannelParticipantsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return order */ public String getOrder() { return this.order; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<DescribeChannelParticipantsRequest, Builder> { private String appId; private String channelId; private String order; private Long ownerId; private Integer pageNum; private Integer pageSize; private Builder() { super(); } private Builder(DescribeChannelParticipantsRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.order = request.order; this.ownerId = request.ownerId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>aec****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testId</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * Order. */ public Builder order(String order) { this.putQueryParameter("Order", order); this.order = order; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public DescribeChannelParticipantsRequest build() { return new DescribeChannelParticipantsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelParticipantsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelParticipantsResponse} extends {@link TeaModel} * * <p>DescribeChannelParticipantsResponse</p> */ public class DescribeChannelParticipantsResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelParticipantsResponseBody body; private DescribeChannelParticipantsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelParticipantsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelParticipantsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelParticipantsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelParticipantsResponseBody body); @Override DescribeChannelParticipantsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelParticipantsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelParticipantsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelParticipantsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelParticipantsResponseBody body) { this.body = body; return this; } @Override public DescribeChannelParticipantsResponse build() { return new DescribeChannelParticipantsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelParticipantsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelParticipantsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelParticipantsResponseBody</p> */ public class DescribeChannelParticipantsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Timestamp") private Integer timestamp; @com.aliyun.core.annotation.NameInMap("TotalNum") private Integer totalNum; @com.aliyun.core.annotation.NameInMap("TotalPage") private Integer totalPage; @com.aliyun.core.annotation.NameInMap("UserList") private UserList userList; private DescribeChannelParticipantsResponseBody(Builder builder) { this.requestId = builder.requestId; this.timestamp = builder.timestamp; this.totalNum = builder.totalNum; this.totalPage = builder.totalPage; this.userList = builder.userList; } public static Builder builder() { return new Builder(); } public static DescribeChannelParticipantsResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return timestamp */ public Integer getTimestamp() { return this.timestamp; } /** * @return totalNum */ public Integer getTotalNum() { return this.totalNum; } /** * @return totalPage */ public Integer getTotalPage() { return this.totalPage; } /** * @return userList */ public UserList getUserList() { return this.userList; } public static final class Builder { private String requestId; private Integer timestamp; private Integer totalNum; private Integer totalPage; private UserList userList; private Builder() { } private Builder(DescribeChannelParticipantsResponseBody model) { this.requestId = model.requestId; this.timestamp = model.timestamp; this.totalNum = model.totalNum; this.totalPage = model.totalPage; this.userList = model.userList; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Timestamp. */ public Builder timestamp(Integer timestamp) { this.timestamp = timestamp; return this; } /** * TotalNum. */ public Builder totalNum(Integer totalNum) { this.totalNum = totalNum; return this; } /** * TotalPage. */ public Builder totalPage(Integer totalPage) { this.totalPage = totalPage; return this; } /** * UserList. */ public Builder userList(UserList userList) { this.userList = userList; return this; } public DescribeChannelParticipantsResponseBody build() { return new DescribeChannelParticipantsResponseBody(this); } } /** * * {@link DescribeChannelParticipantsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelParticipantsResponseBody</p> */ public static class UserList extends TeaModel { @com.aliyun.core.annotation.NameInMap("User") private java.util.List<String> user; private UserList(Builder builder) { this.user = builder.user; } public static Builder builder() { return new Builder(); } public static UserList create() { return builder().build(); } /** * @return user */ public java.util.List<String> getUser() { return this.user; } public static final class Builder { private java.util.List<String> user; private Builder() { } private Builder(UserList model) { this.user = model.user; } /** * User. */ public Builder user(java.util.List<String> user) { this.user = user; return this; } public UserList build() { return new UserList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelRequest} extends {@link RequestModel} * * <p>DescribeChannelRequest</p> */ public class DescribeChannelRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; private DescribeChannelRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; } public static Builder builder() { return new Builder(); } public static DescribeChannelRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } public static final class Builder extends Request.Builder<DescribeChannelRequest, Builder> { private String appId; private String channelId; private Builder() { super(); } private Builder(DescribeChannelRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eo85****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } @Override public DescribeChannelRequest build() { return new DescribeChannelRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelResponse} extends {@link TeaModel} * * <p>DescribeChannelResponse</p> */ public class DescribeChannelResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelResponseBody body; private DescribeChannelResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelResponseBody body); @Override DescribeChannelResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelResponseBody body) { this.body = body; return this; } @Override public DescribeChannelResponse build() { return new DescribeChannelResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelResponseBody} extends {@link TeaModel} * * <p>DescribeChannelResponseBody</p> */ public class DescribeChannelResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Channel") private Channel channel; @com.aliyun.core.annotation.NameInMap("ChannelExist") private Boolean channelExist; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeChannelResponseBody(Builder builder) { this.channel = builder.channel; this.channelExist = builder.channelExist; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeChannelResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return channel */ public Channel getChannel() { return this.channel; } /** * @return channelExist */ public Boolean getChannelExist() { return this.channelExist; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private Channel channel; private Boolean channelExist; private String requestId; private Builder() { } private Builder(DescribeChannelResponseBody model) { this.channel = model.channel; this.channelExist = model.channelExist; this.requestId = model.requestId; } /** * <p>channel</p> */ public Builder channel(Channel channel) { this.channel = channel; return this; } /** * ChannelExist. */ public Builder channelExist(Boolean channelExist) { this.channelExist = channelExist; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeChannelResponseBody build() { return new DescribeChannelResponseBody(this); } } /** * * {@link DescribeChannelResponseBody} extends {@link TeaModel} * * <p>DescribeChannelResponseBody</p> */ public static class Channel extends TeaModel { @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("StartTime") private Long startTime; private Channel(Builder builder) { this.channelId = builder.channelId; this.startTime = builder.startTime; } public static Builder builder() { return new Builder(); } public static Channel create() { return builder().build(); } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return startTime */ public Long getStartTime() { return this.startTime; } public static final class Builder { private String channelId; private Long startTime; private Builder() { } private Builder(Channel model) { this.channelId = model.channelId; this.startTime = model.startTime; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * StartTime. */ public Builder startTime(Long startTime) { this.startTime = startTime; return this; } public Channel build() { return new Channel(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelTopPubUserListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelTopPubUserListRequest} extends {@link RequestModel} * * <p>DescribeChannelTopPubUserListRequest</p> */ public class DescribeChannelTopPubUserListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; private DescribeChannelTopPubUserListRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; } public static Builder builder() { return new Builder(); } public static DescribeChannelTopPubUserListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } public static final class Builder extends Request.Builder<DescribeChannelTopPubUserListRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private Builder() { super(); } private Builder(DescribeChannelTopPubUserListRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615893133</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } @Override public DescribeChannelTopPubUserListRequest build() { return new DescribeChannelTopPubUserListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelTopPubUserListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelTopPubUserListResponse} extends {@link TeaModel} * * <p>DescribeChannelTopPubUserListResponse</p> */ public class DescribeChannelTopPubUserListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelTopPubUserListResponseBody body; private DescribeChannelTopPubUserListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelTopPubUserListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelTopPubUserListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelTopPubUserListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelTopPubUserListResponseBody body); @Override DescribeChannelTopPubUserListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelTopPubUserListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelTopPubUserListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelTopPubUserListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelTopPubUserListResponseBody body) { this.body = body; return this; } @Override public DescribeChannelTopPubUserListResponse build() { return new DescribeChannelTopPubUserListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelTopPubUserListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelTopPubUserListResponseBody} extends {@link TeaModel} * * <p>DescribeChannelTopPubUserListResponseBody</p> */ public class DescribeChannelTopPubUserListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TopPubUserDetailList") private java.util.List<TopPubUserDetailList> topPubUserDetailList; private DescribeChannelTopPubUserListResponseBody(Builder builder) { this.requestId = builder.requestId; this.topPubUserDetailList = builder.topPubUserDetailList; } public static Builder builder() { return new Builder(); } public static DescribeChannelTopPubUserListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return topPubUserDetailList */ public java.util.List<TopPubUserDetailList> getTopPubUserDetailList() { return this.topPubUserDetailList; } public static final class Builder { private String requestId; private java.util.List<TopPubUserDetailList> topPubUserDetailList; private Builder() { } private Builder(DescribeChannelTopPubUserListResponseBody model) { this.requestId = model.requestId; this.topPubUserDetailList = model.topPubUserDetailList; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TopPubUserDetailList. */ public Builder topPubUserDetailList(java.util.List<TopPubUserDetailList> topPubUserDetailList) { this.topPubUserDetailList = topPubUserDetailList; return this; } public DescribeChannelTopPubUserListResponseBody build() { return new DescribeChannelTopPubUserListResponseBody(this); } } /** * * {@link DescribeChannelTopPubUserListResponseBody} extends {@link TeaModel} * * <p>DescribeChannelTopPubUserListResponseBody</p> */ public static class OnlinePeriods extends TeaModel { @com.aliyun.core.annotation.NameInMap("JoinTs") private Long joinTs; @com.aliyun.core.annotation.NameInMap("LeaveTs") private Long leaveTs; private OnlinePeriods(Builder builder) { this.joinTs = builder.joinTs; this.leaveTs = builder.leaveTs; } public static Builder builder() { return new Builder(); } public static OnlinePeriods create() { return builder().build(); } /** * @return joinTs */ public Long getJoinTs() { return this.joinTs; } /** * @return leaveTs */ public Long getLeaveTs() { return this.leaveTs; } public static final class Builder { private Long joinTs; private Long leaveTs; private Builder() { } private Builder(OnlinePeriods model) { this.joinTs = model.joinTs; this.leaveTs = model.leaveTs; } /** * JoinTs. */ public Builder joinTs(Long joinTs) { this.joinTs = joinTs; return this; } /** * LeaveTs. */ public Builder leaveTs(Long leaveTs) { this.leaveTs = leaveTs; return this; } public OnlinePeriods build() { return new OnlinePeriods(this); } } } /** * * {@link DescribeChannelTopPubUserListResponseBody} extends {@link TeaModel} * * <p>DescribeChannelTopPubUserListResponseBody</p> */ public static class TopPubUserDetailList extends TeaModel { @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("Location") private String location; @com.aliyun.core.annotation.NameInMap("OnlineDuration") private Long onlineDuration; @com.aliyun.core.annotation.NameInMap("OnlinePeriods") private java.util.List<OnlinePeriods> onlinePeriods; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private TopPubUserDetailList(Builder builder) { this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; this.location = builder.location; this.onlineDuration = builder.onlineDuration; this.onlinePeriods = builder.onlinePeriods; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static TopPubUserDetailList create() { return builder().build(); } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return location */ public String getLocation() { return this.location; } /** * @return onlineDuration */ public Long getOnlineDuration() { return this.onlineDuration; } /** * @return onlinePeriods */ public java.util.List<OnlinePeriods> getOnlinePeriods() { return this.onlinePeriods; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Long createdTs; private Long destroyedTs; private Long duration; private String location; private Long onlineDuration; private java.util.List<OnlinePeriods> onlinePeriods; private String userId; private Builder() { } private Builder(TopPubUserDetailList model) { this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; this.location = model.location; this.onlineDuration = model.onlineDuration; this.onlinePeriods = model.onlinePeriods; this.userId = model.userId; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * Location. */ public Builder location(String location) { this.location = location; return this; } /** * OnlineDuration. */ public Builder onlineDuration(Long onlineDuration) { this.onlineDuration = onlineDuration; return this; } /** * OnlinePeriods. */ public Builder onlinePeriods(java.util.List<OnlinePeriods> onlinePeriods) { this.onlinePeriods = onlinePeriods; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public TopPubUserDetailList build() { return new TopPubUserDetailList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserMetricsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserMetricsRequest} extends {@link RequestModel} * * <p>DescribeChannelUserMetricsRequest</p> */ public class DescribeChannelUserMetricsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; private DescribeChannelUserMetricsRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; } public static Builder builder() { return new Builder(); } public static DescribeChannelUserMetricsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } public static final class Builder extends Request.Builder<DescribeChannelUserMetricsRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private Builder() { super(); } private Builder(DescribeChannelUserMetricsRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } @Override public DescribeChannelUserMetricsRequest build() { return new DescribeChannelUserMetricsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserMetricsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserMetricsResponse} extends {@link TeaModel} * * <p>DescribeChannelUserMetricsResponse</p> */ public class DescribeChannelUserMetricsResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelUserMetricsResponseBody body; private DescribeChannelUserMetricsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelUserMetricsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelUserMetricsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelUserMetricsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelUserMetricsResponseBody body); @Override DescribeChannelUserMetricsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelUserMetricsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelUserMetricsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelUserMetricsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelUserMetricsResponseBody body) { this.body = body; return this; } @Override public DescribeChannelUserMetricsResponse build() { return new DescribeChannelUserMetricsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserMetricsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserMetricsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserMetricsResponseBody</p> */ public class DescribeChannelUserMetricsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("MetricDatas") private java.util.List<MetricDatas> metricDatas; @com.aliyun.core.annotation.NameInMap("OverallData") private OverallData overallData; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeChannelUserMetricsResponseBody(Builder builder) { this.metricDatas = builder.metricDatas; this.overallData = builder.overallData; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeChannelUserMetricsResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return metricDatas */ public java.util.List<MetricDatas> getMetricDatas() { return this.metricDatas; } /** * @return overallData */ public OverallData getOverallData() { return this.overallData; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<MetricDatas> metricDatas; private OverallData overallData; private String requestId; private Builder() { } private Builder(DescribeChannelUserMetricsResponseBody model) { this.metricDatas = model.metricDatas; this.overallData = model.overallData; this.requestId = model.requestId; } /** * MetricDatas. */ public Builder metricDatas(java.util.List<MetricDatas> metricDatas) { this.metricDatas = metricDatas; return this; } /** * OverallData. */ public Builder overallData(OverallData overallData) { this.overallData = overallData; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeChannelUserMetricsResponseBody build() { return new DescribeChannelUserMetricsResponseBody(this); } } /** * * {@link DescribeChannelUserMetricsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserMetricsResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(Nodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeChannelUserMetricsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserMetricsResponseBody</p> */ public static class MetricDatas extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; private MetricDatas(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; } public static Builder builder() { return new Builder(); } public static MetricDatas create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } public static final class Builder { private java.util.List<Nodes> nodes; private String type; private Builder() { } private Builder(MetricDatas model) { this.nodes = model.nodes; this.type = model.type; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } public MetricDatas build() { return new MetricDatas(this); } } } /** * * {@link DescribeChannelUserMetricsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserMetricsResponseBody</p> */ public static class OverallData extends TeaModel { @com.aliyun.core.annotation.NameInMap("TotalBadExpNum") private Long totalBadExpNum; @com.aliyun.core.annotation.NameInMap("TotalJoinFailNum") private Long totalJoinFailNum; @com.aliyun.core.annotation.NameInMap("TotalPubUserNum") private Long totalPubUserNum; @com.aliyun.core.annotation.NameInMap("TotalSubUserNum") private Long totalSubUserNum; @com.aliyun.core.annotation.NameInMap("TotalUserNum") private Long totalUserNum; private OverallData(Builder builder) { this.totalBadExpNum = builder.totalBadExpNum; this.totalJoinFailNum = builder.totalJoinFailNum; this.totalPubUserNum = builder.totalPubUserNum; this.totalSubUserNum = builder.totalSubUserNum; this.totalUserNum = builder.totalUserNum; } public static Builder builder() { return new Builder(); } public static OverallData create() { return builder().build(); } /** * @return totalBadExpNum */ public Long getTotalBadExpNum() { return this.totalBadExpNum; } /** * @return totalJoinFailNum */ public Long getTotalJoinFailNum() { return this.totalJoinFailNum; } /** * @return totalPubUserNum */ public Long getTotalPubUserNum() { return this.totalPubUserNum; } /** * @return totalSubUserNum */ public Long getTotalSubUserNum() { return this.totalSubUserNum; } /** * @return totalUserNum */ public Long getTotalUserNum() { return this.totalUserNum; } public static final class Builder { private Long totalBadExpNum; private Long totalJoinFailNum; private Long totalPubUserNum; private Long totalSubUserNum; private Long totalUserNum; private Builder() { } private Builder(OverallData model) { this.totalBadExpNum = model.totalBadExpNum; this.totalJoinFailNum = model.totalJoinFailNum; this.totalPubUserNum = model.totalPubUserNum; this.totalSubUserNum = model.totalSubUserNum; this.totalUserNum = model.totalUserNum; } /** * TotalBadExpNum. */ public Builder totalBadExpNum(Long totalBadExpNum) { this.totalBadExpNum = totalBadExpNum; return this; } /** * TotalJoinFailNum. */ public Builder totalJoinFailNum(Long totalJoinFailNum) { this.totalJoinFailNum = totalJoinFailNum; return this; } /** * TotalPubUserNum. */ public Builder totalPubUserNum(Long totalPubUserNum) { this.totalPubUserNum = totalPubUserNum; return this; } /** * TotalSubUserNum. */ public Builder totalSubUserNum(Long totalSubUserNum) { this.totalSubUserNum = totalSubUserNum; return this; } /** * TotalUserNum. */ public Builder totalUserNum(Long totalUserNum) { this.totalUserNum = totalUserNum; return this; } public OverallData build() { return new OverallData(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserRequest} extends {@link RequestModel} * * <p>DescribeChannelUserRequest</p> */ public class DescribeChannelUserRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserId") @com.aliyun.core.annotation.Validation(required = true) private String userId; private DescribeChannelUserRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static DescribeChannelUserRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder extends Request.Builder<DescribeChannelUserRequest, Builder> { private String appId; private String channelId; private String userId; private Builder() { super(); } private Builder(DescribeChannelUserRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.userId = request.userId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eo85****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1811****</p> */ public Builder userId(String userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public DescribeChannelUserRequest build() { return new DescribeChannelUserRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserResponse} extends {@link TeaModel} * * <p>DescribeChannelUserResponse</p> */ public class DescribeChannelUserResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelUserResponseBody body; private DescribeChannelUserResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelUserResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelUserResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelUserResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelUserResponseBody body); @Override DescribeChannelUserResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelUserResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelUserResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelUserResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelUserResponseBody body) { this.body = body; return this; } @Override public DescribeChannelUserResponse build() { return new DescribeChannelUserResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUserResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUserResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserResponseBody</p> */ public class DescribeChannelUserResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ChannelExist") private Boolean channelExist; @com.aliyun.core.annotation.NameInMap("InChannel") private Boolean inChannel; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Sessions") private java.util.List<Sessions> sessions; private DescribeChannelUserResponseBody(Builder builder) { this.channelExist = builder.channelExist; this.inChannel = builder.inChannel; this.requestId = builder.requestId; this.sessions = builder.sessions; } public static Builder builder() { return new Builder(); } public static DescribeChannelUserResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return channelExist */ public Boolean getChannelExist() { return this.channelExist; } /** * @return inChannel */ public Boolean getInChannel() { return this.inChannel; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return sessions */ public java.util.List<Sessions> getSessions() { return this.sessions; } public static final class Builder { private Boolean channelExist; private Boolean inChannel; private String requestId; private java.util.List<Sessions> sessions; private Builder() { } private Builder(DescribeChannelUserResponseBody model) { this.channelExist = model.channelExist; this.inChannel = model.inChannel; this.requestId = model.requestId; this.sessions = model.sessions; } /** * ChannelExist. */ public Builder channelExist(Boolean channelExist) { this.channelExist = channelExist; return this; } /** * InChannel. */ public Builder inChannel(Boolean inChannel) { this.inChannel = inChannel; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Sessions. */ public Builder sessions(java.util.List<Sessions> sessions) { this.sessions = sessions; return this; } public DescribeChannelUserResponseBody build() { return new DescribeChannelUserResponseBody(this); } } /** * * {@link DescribeChannelUserResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUserResponseBody</p> */ public static class Sessions extends TeaModel { @com.aliyun.core.annotation.NameInMap("Joined") private Long joined; @com.aliyun.core.annotation.NameInMap("SessionId") private String sessionId; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private Sessions(Builder builder) { this.joined = builder.joined; this.sessionId = builder.sessionId; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static Sessions create() { return builder().build(); } /** * @return joined */ public Long getJoined() { return this.joined; } /** * @return sessionId */ public String getSessionId() { return this.sessionId; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Long joined; private String sessionId; private String userId; private Builder() { } private Builder(Sessions model) { this.joined = model.joined; this.sessionId = model.sessionId; this.userId = model.userId; } /** * Joined. */ public Builder joined(Long joined) { this.joined = joined; return this; } /** * SessionId. */ public Builder sessionId(String sessionId) { this.sessionId = sessionId; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public Sessions build() { return new Sessions(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUsersRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUsersRequest} extends {@link RequestModel} * * <p>DescribeChannelUsersRequest</p> */ public class DescribeChannelUsersRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; private DescribeChannelUsersRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.ownerId = builder.ownerId; } public static Builder builder() { return new Builder(); } public static DescribeChannelUsersRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } public static final class Builder extends Request.Builder<DescribeChannelUsersRequest, Builder> { private String appId; private String channelId; private Long ownerId; private Builder() { super(); } private Builder(DescribeChannelUsersRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.ownerId = request.ownerId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>a2hz****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testId</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } @Override public DescribeChannelUsersRequest build() { return new DescribeChannelUsersRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUsersResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUsersResponse} extends {@link TeaModel} * * <p>DescribeChannelUsersResponse</p> */ public class DescribeChannelUsersResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelUsersResponseBody body; private DescribeChannelUsersResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelUsersResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelUsersResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelUsersResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelUsersResponseBody body); @Override DescribeChannelUsersResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelUsersResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelUsersResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelUsersResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelUsersResponseBody body) { this.body = body; return this; } @Override public DescribeChannelUsersResponse build() { return new DescribeChannelUsersResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelUsersResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelUsersResponseBody} extends {@link TeaModel} * * <p>DescribeChannelUsersResponseBody</p> */ public class DescribeChannelUsersResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("ChannelProfile") private Integer channelProfile; @com.aliyun.core.annotation.NameInMap("CommTotalNum") private Integer commTotalNum; @com.aliyun.core.annotation.NameInMap("InteractiveUserList") private java.util.List<String> interactiveUserList; @com.aliyun.core.annotation.NameInMap("InteractiveUserNum") private Integer interactiveUserNum; @com.aliyun.core.annotation.NameInMap("IsChannelExist") private Boolean isChannelExist; @com.aliyun.core.annotation.NameInMap("LiveUserList") private java.util.List<String> liveUserList; @com.aliyun.core.annotation.NameInMap("LiveUserNum") private Integer liveUserNum; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Timestamp") private Integer timestamp; @com.aliyun.core.annotation.NameInMap("UserList") private java.util.List<String> userList; private DescribeChannelUsersResponseBody(Builder builder) { this.channelProfile = builder.channelProfile; this.commTotalNum = builder.commTotalNum; this.interactiveUserList = builder.interactiveUserList; this.interactiveUserNum = builder.interactiveUserNum; this.isChannelExist = builder.isChannelExist; this.liveUserList = builder.liveUserList; this.liveUserNum = builder.liveUserNum; this.requestId = builder.requestId; this.timestamp = builder.timestamp; this.userList = builder.userList; } public static Builder builder() { return new Builder(); } public static DescribeChannelUsersResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return channelProfile */ public Integer getChannelProfile() { return this.channelProfile; } /** * @return commTotalNum */ public Integer getCommTotalNum() { return this.commTotalNum; } /** * @return interactiveUserList */ public java.util.List<String> getInteractiveUserList() { return this.interactiveUserList; } /** * @return interactiveUserNum */ public Integer getInteractiveUserNum() { return this.interactiveUserNum; } /** * @return isChannelExist */ public Boolean getIsChannelExist() { return this.isChannelExist; } /** * @return liveUserList */ public java.util.List<String> getLiveUserList() { return this.liveUserList; } /** * @return liveUserNum */ public Integer getLiveUserNum() { return this.liveUserNum; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return timestamp */ public Integer getTimestamp() { return this.timestamp; } /** * @return userList */ public java.util.List<String> getUserList() { return this.userList; } public static final class Builder { private Integer channelProfile; private Integer commTotalNum; private java.util.List<String> interactiveUserList; private Integer interactiveUserNum; private Boolean isChannelExist; private java.util.List<String> liveUserList; private Integer liveUserNum; private String requestId; private Integer timestamp; private java.util.List<String> userList; private Builder() { } private Builder(DescribeChannelUsersResponseBody model) { this.channelProfile = model.channelProfile; this.commTotalNum = model.commTotalNum; this.interactiveUserList = model.interactiveUserList; this.interactiveUserNum = model.interactiveUserNum; this.isChannelExist = model.isChannelExist; this.liveUserList = model.liveUserList; this.liveUserNum = model.liveUserNum; this.requestId = model.requestId; this.timestamp = model.timestamp; this.userList = model.userList; } /** * ChannelProfile. */ public Builder channelProfile(Integer channelProfile) { this.channelProfile = channelProfile; return this; } /** * CommTotalNum. */ public Builder commTotalNum(Integer commTotalNum) { this.commTotalNum = commTotalNum; return this; } /** * InteractiveUserList. */ public Builder interactiveUserList(java.util.List<String> interactiveUserList) { this.interactiveUserList = interactiveUserList; return this; } /** * InteractiveUserNum. */ public Builder interactiveUserNum(Integer interactiveUserNum) { this.interactiveUserNum = interactiveUserNum; return this; } /** * IsChannelExist. */ public Builder isChannelExist(Boolean isChannelExist) { this.isChannelExist = isChannelExist; return this; } /** * LiveUserList. */ public Builder liveUserList(java.util.List<String> liveUserList) { this.liveUserList = liveUserList; return this; } /** * LiveUserNum. */ public Builder liveUserNum(Integer liveUserNum) { this.liveUserNum = liveUserNum; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Timestamp. */ public Builder timestamp(Integer timestamp) { this.timestamp = timestamp; return this; } /** * UserList. */ public Builder userList(java.util.List<String> userList) { this.userList = userList; return this; } public DescribeChannelUsersResponseBody build() { return new DescribeChannelUsersResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelsRequest} extends {@link RequestModel} * * <p>DescribeChannelsRequest</p> */ public class DescribeChannelsRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true, maxLength = 11, minLength = 8) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100, minimum = 1) private Integer pageSize; private DescribeChannelsRequest(Builder builder) { super(builder); this.appId = builder.appId; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeChannelsRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<DescribeChannelsRequest, Builder> { private String appId; private Integer pageNo; private Integer pageSize; private Builder() { super(); } private Builder(DescribeChannelsRequest request) { super(request); this.appId = request.appId; this.pageNo = request.pageNo; this.pageSize = request.pageSize; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>eo85****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.putQueryParameter("PageNo", pageNo); this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public DescribeChannelsRequest build() { return new DescribeChannelsRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelsResponse} extends {@link TeaModel} * * <p>DescribeChannelsResponse</p> */ public class DescribeChannelsResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeChannelsResponseBody body; private DescribeChannelsResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeChannelsResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeChannelsResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeChannelsResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeChannelsResponseBody body); @Override DescribeChannelsResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeChannelsResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeChannelsResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeChannelsResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeChannelsResponseBody body) { this.body = body; return this; } @Override public DescribeChannelsResponse build() { return new DescribeChannelsResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeChannelsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeChannelsResponseBody} extends {@link TeaModel} * * <p>DescribeChannelsResponseBody</p> */ public class DescribeChannelsResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("Records") private java.util.List<String> records; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCnt") private Integer totalCnt; private DescribeChannelsResponseBody(Builder builder) { this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.records = builder.records; this.requestId = builder.requestId; this.totalCnt = builder.totalCnt; } public static Builder builder() { return new Builder(); } public static DescribeChannelsResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return records */ public java.util.List<String> getRecords() { return this.records; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCnt */ public Integer getTotalCnt() { return this.totalCnt; } public static final class Builder { private Integer pageNo; private Integer pageSize; private java.util.List<String> records; private String requestId; private Integer totalCnt; private Builder() { } private Builder(DescribeChannelsResponseBody model) { this.pageNo = model.pageNo; this.pageSize = model.pageSize; this.records = model.records; this.requestId = model.requestId; this.totalCnt = model.totalCnt; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * Records. */ public Builder records(java.util.List<String> records) { this.records = records; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCnt. */ public Builder totalCnt(Integer totalCnt) { this.totalCnt = totalCnt; return this; } public DescribeChannelsResponseBody build() { return new DescribeChannelsResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotePhrasesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotePhrasesRequest} extends {@link RequestModel} * * <p>DescribeCloudNotePhrasesRequest</p> */ public class DescribeCloudNotePhrasesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Condition") private Condition condition; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNum") private Integer pageNum; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100) private Integer pageSize; private DescribeCloudNotePhrasesRequest(Builder builder) { super(builder); this.appId = builder.appId; this.condition = builder.condition; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeCloudNotePhrasesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return condition */ public Condition getCondition() { return this.condition; } /** * @return pageNum */ public Integer getPageNum() { return this.pageNum; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<DescribeCloudNotePhrasesRequest, Builder> { private String appId; private Condition condition; private Integer pageNum; private Integer pageSize; private Builder() { super(); } private Builder(DescribeCloudNotePhrasesRequest request) { super(request); this.appId = request.appId; this.condition = request.condition; this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ac7N****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * Condition. */ public Builder condition(Condition condition) { String conditionShrink = shrink(condition, "Condition", "json"); this.putQueryParameter("Condition", conditionShrink); this.condition = condition; return this; } /** * PageNum. */ public Builder pageNum(Integer pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public DescribeCloudNotePhrasesRequest build() { return new DescribeCloudNotePhrasesRequest(this); } } /** * * {@link DescribeCloudNotePhrasesRequest} extends {@link TeaModel} * * <p>DescribeCloudNotePhrasesRequest</p> */ public static class Condition extends TeaModel { @com.aliyun.core.annotation.NameInMap("Id") private String id; @com.aliyun.core.annotation.NameInMap("Name") @com.aliyun.core.annotation.Validation(maxLength = 30, minLength = 1) private String name; private Condition(Builder builder) { this.id = builder.id; this.name = builder.name; } public static Builder builder() { return new Builder(); } public static Condition create() { return builder().build(); } /** * @return id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } public static final class Builder { private String id; private String name; private Builder() { } private Builder(Condition model) { this.id = model.id; this.name = model.name; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } public Condition build() { return new Condition(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotePhrasesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotePhrasesResponse} extends {@link TeaModel} * * <p>DescribeCloudNotePhrasesResponse</p> */ public class DescribeCloudNotePhrasesResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCloudNotePhrasesResponseBody body; private DescribeCloudNotePhrasesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCloudNotePhrasesResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCloudNotePhrasesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCloudNotePhrasesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCloudNotePhrasesResponseBody body); @Override DescribeCloudNotePhrasesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCloudNotePhrasesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCloudNotePhrasesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCloudNotePhrasesResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCloudNotePhrasesResponseBody body) { this.body = body; return this; } @Override public DescribeCloudNotePhrasesResponse build() { return new DescribeCloudNotePhrasesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotePhrasesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotePhrasesResponseBody} extends {@link TeaModel} * * <p>DescribeCloudNotePhrasesResponseBody</p> */ public class DescribeCloudNotePhrasesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Phrases") private java.util.List<Phrases> phrases; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalNum") private Long totalNum; @com.aliyun.core.annotation.NameInMap("TotalPage") private Long totalPage; private DescribeCloudNotePhrasesResponseBody(Builder builder) { this.phrases = builder.phrases; this.requestId = builder.requestId; this.totalNum = builder.totalNum; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeCloudNotePhrasesResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return phrases */ public java.util.List<Phrases> getPhrases() { return this.phrases; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalNum */ public Long getTotalNum() { return this.totalNum; } /** * @return totalPage */ public Long getTotalPage() { return this.totalPage; } public static final class Builder { private java.util.List<Phrases> phrases; private String requestId; private Long totalNum; private Long totalPage; private Builder() { } private Builder(DescribeCloudNotePhrasesResponseBody model) { this.phrases = model.phrases; this.requestId = model.requestId; this.totalNum = model.totalNum; this.totalPage = model.totalPage; } /** * Phrases. */ public Builder phrases(java.util.List<Phrases> phrases) { this.phrases = phrases; return this; } /** * <p>Id of the request。</p> * * <strong>example:</strong> * <p>3A26E1E3-3CBB-599E-AD68-CB78F5A42FA1</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalNum. */ public Builder totalNum(Long totalNum) { this.totalNum = totalNum; return this; } /** * TotalPage. */ public Builder totalPage(Long totalPage) { this.totalPage = totalPage; return this; } public DescribeCloudNotePhrasesResponseBody build() { return new DescribeCloudNotePhrasesResponseBody(this); } } /** * * {@link DescribeCloudNotePhrasesResponseBody} extends {@link TeaModel} * * <p>DescribeCloudNotePhrasesResponseBody</p> */ public static class WordWeights extends TeaModel { @com.aliyun.core.annotation.NameInMap("Weight") @com.aliyun.core.annotation.Validation(maximum = 5) private Integer weight; @com.aliyun.core.annotation.NameInMap("Word") @com.aliyun.core.annotation.Validation(maxLength = 10, minLength = 1) private String word; private WordWeights(Builder builder) { this.weight = builder.weight; this.word = builder.word; } public static Builder builder() { return new Builder(); } public static WordWeights create() { return builder().build(); } /** * @return weight */ public Integer getWeight() { return this.weight; } /** * @return word */ public String getWord() { return this.word; } public static final class Builder { private Integer weight; private String word; private Builder() { } private Builder(WordWeights model) { this.weight = model.weight; this.word = model.word; } /** * Weight. */ public Builder weight(Integer weight) { this.weight = weight; return this; } /** * Word. */ public Builder word(String word) { this.word = word; return this; } public WordWeights build() { return new WordWeights(this); } } } /** * * {@link DescribeCloudNotePhrasesResponseBody} extends {@link TeaModel} * * <p>DescribeCloudNotePhrasesResponseBody</p> */ public static class Phrases extends TeaModel { @com.aliyun.core.annotation.NameInMap("CreateTime") private String createTime; @com.aliyun.core.annotation.NameInMap("Description") @com.aliyun.core.annotation.Validation(maxLength = 200, minLength = 1) private String description; @com.aliyun.core.annotation.NameInMap("Id") private String id; @com.aliyun.core.annotation.NameInMap("Name") @com.aliyun.core.annotation.Validation(maxLength = 30, minLength = 1) private String name; @com.aliyun.core.annotation.NameInMap("WordWeights") @com.aliyun.core.annotation.Validation(required = true) private java.util.List<WordWeights> wordWeights; private Phrases(Builder builder) { this.createTime = builder.createTime; this.description = builder.description; this.id = builder.id; this.name = builder.name; this.wordWeights = builder.wordWeights; } public static Builder builder() { return new Builder(); } public static Phrases create() { return builder().build(); } /** * @return createTime */ public String getCreateTime() { return this.createTime; } /** * @return description */ public String getDescription() { return this.description; } /** * @return id */ public String getId() { return this.id; } /** * @return name */ public String getName() { return this.name; } /** * @return wordWeights */ public java.util.List<WordWeights> getWordWeights() { return this.wordWeights; } public static final class Builder { private String createTime; private String description; private String id; private String name; private java.util.List<WordWeights> wordWeights; private Builder() { } private Builder(Phrases model) { this.createTime = model.createTime; this.description = model.description; this.id = model.id; this.name = model.name; this.wordWeights = model.wordWeights; } /** * CreateTime. */ public Builder createTime(String createTime) { this.createTime = createTime; return this; } /** * Description. */ public Builder description(String description) { this.description = description; return this; } /** * Id. */ public Builder id(String id) { this.id = id; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * <p>This parameter is required.</p> */ public Builder wordWeights(java.util.List<WordWeights> wordWeights) { this.wordWeights = wordWeights; return this; } public Phrases build() { return new Phrases(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotesRequest} extends {@link RequestModel} * * <p>DescribeCloudNotesRequest</p> */ public class DescribeCloudNotesRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100) private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") private Long startTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TaskIds") private java.util.List<String> taskIds; private DescribeCloudNotesRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.endTs = builder.endTs; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.startTs = builder.startTs; this.taskIds = builder.taskIds; } public static Builder builder() { return new Builder(); } public static DescribeCloudNotesRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return taskIds */ public java.util.List<String> getTaskIds() { return this.taskIds; } public static final class Builder extends Request.Builder<DescribeCloudNotesRequest, Builder> { private String appId; private String channelId; private Long endTs; private Integer pageNo; private Integer pageSize; private Long startTs; private java.util.List<String> taskIds; private Builder() { super(); } private Builder(DescribeCloudNotesRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.endTs = request.endTs; this.pageNo = request.pageNo; this.pageSize = request.pageSize; this.startTs = request.startTs; this.taskIds = request.taskIds; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * EndTs. */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.putQueryParameter("PageNo", pageNo); this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * StartTs. */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } /** * TaskIds. */ public Builder taskIds(java.util.List<String> taskIds) { String taskIdsShrink = shrink(taskIds, "TaskIds", "json"); this.putQueryParameter("TaskIds", taskIdsShrink); this.taskIds = taskIds; return this; } @Override public DescribeCloudNotesRequest build() { return new DescribeCloudNotesRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotesResponse} extends {@link TeaModel} * * <p>DescribeCloudNotesResponse</p> */ public class DescribeCloudNotesResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCloudNotesResponseBody body; private DescribeCloudNotesResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCloudNotesResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCloudNotesResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCloudNotesResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCloudNotesResponseBody body); @Override DescribeCloudNotesResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCloudNotesResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCloudNotesResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCloudNotesResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCloudNotesResponseBody body) { this.body = body; return this; } @Override public DescribeCloudNotesResponse build() { return new DescribeCloudNotesResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudNotesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudNotesResponseBody} extends {@link TeaModel} * * <p>DescribeCloudNotesResponseBody</p> */ public class DescribeCloudNotesResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Items") private java.util.List<Items> items; @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(maximum = 100) private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCnt") private Integer totalCnt; private DescribeCloudNotesResponseBody(Builder builder) { this.items = builder.items; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCnt = builder.totalCnt; } public static Builder builder() { return new Builder(); } public static DescribeCloudNotesResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return items */ public java.util.List<Items> getItems() { return this.items; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCnt */ public Integer getTotalCnt() { return this.totalCnt; } public static final class Builder { private java.util.List<Items> items; private Integer pageNo; private Integer pageSize; private String requestId; private Integer totalCnt; private Builder() { } private Builder(DescribeCloudNotesResponseBody model) { this.items = model.items; this.pageNo = model.pageNo; this.pageSize = model.pageSize; this.requestId = model.requestId; this.totalCnt = model.totalCnt; } /** * Items. */ public Builder items(java.util.List<Items> items) { this.items = items; return this; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * <p>Id of the request</p> * * <strong>example:</strong> * <p>154EF5DE-3D08-1F2C-A482-281F78D74B7C</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCnt. */ public Builder totalCnt(Integer totalCnt) { this.totalCnt = totalCnt; return this; } public DescribeCloudNotesResponseBody build() { return new DescribeCloudNotesResponseBody(this); } } /** * * {@link DescribeCloudNotesResponseBody} extends {@link TeaModel} * * <p>DescribeCloudNotesResponseBody</p> */ public static class Items extends TeaModel { @com.aliyun.core.annotation.NameInMap("AutoChaptersFilePath") private String autoChaptersFilePath; @com.aliyun.core.annotation.NameInMap("Bucket") private String bucket; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CustomPromptFilePath") private String customPromptFilePath; @com.aliyun.core.annotation.NameInMap("MeetingAssistanceFilePath") private String meetingAssistanceFilePath; @com.aliyun.core.annotation.NameInMap("Region") private Integer region; @com.aliyun.core.annotation.NameInMap("ServiceInspectionFilePath") private String serviceInspectionFilePath; @com.aliyun.core.annotation.NameInMap("StartTs") private Long startTs; @com.aliyun.core.annotation.NameInMap("SummarizationFilePath") private String summarizationFilePath; @com.aliyun.core.annotation.NameInMap("TaskId") private String taskId; @com.aliyun.core.annotation.NameInMap("TextPolishFilePath") private String textPolishFilePath; @com.aliyun.core.annotation.NameInMap("TranscriptionFilePath") private String transcriptionFilePath; @com.aliyun.core.annotation.NameInMap("Vendor") private Integer vendor; private Items(Builder builder) { this.autoChaptersFilePath = builder.autoChaptersFilePath; this.bucket = builder.bucket; this.channelId = builder.channelId; this.customPromptFilePath = builder.customPromptFilePath; this.meetingAssistanceFilePath = builder.meetingAssistanceFilePath; this.region = builder.region; this.serviceInspectionFilePath = builder.serviceInspectionFilePath; this.startTs = builder.startTs; this.summarizationFilePath = builder.summarizationFilePath; this.taskId = builder.taskId; this.textPolishFilePath = builder.textPolishFilePath; this.transcriptionFilePath = builder.transcriptionFilePath; this.vendor = builder.vendor; } public static Builder builder() { return new Builder(); } public static Items create() { return builder().build(); } /** * @return autoChaptersFilePath */ public String getAutoChaptersFilePath() { return this.autoChaptersFilePath; } /** * @return bucket */ public String getBucket() { return this.bucket; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return customPromptFilePath */ public String getCustomPromptFilePath() { return this.customPromptFilePath; } /** * @return meetingAssistanceFilePath */ public String getMeetingAssistanceFilePath() { return this.meetingAssistanceFilePath; } /** * @return region */ public Integer getRegion() { return this.region; } /** * @return serviceInspectionFilePath */ public String getServiceInspectionFilePath() { return this.serviceInspectionFilePath; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return summarizationFilePath */ public String getSummarizationFilePath() { return this.summarizationFilePath; } /** * @return taskId */ public String getTaskId() { return this.taskId; } /** * @return textPolishFilePath */ public String getTextPolishFilePath() { return this.textPolishFilePath; } /** * @return transcriptionFilePath */ public String getTranscriptionFilePath() { return this.transcriptionFilePath; } /** * @return vendor */ public Integer getVendor() { return this.vendor; } public static final class Builder { private String autoChaptersFilePath; private String bucket; private String channelId; private String customPromptFilePath; private String meetingAssistanceFilePath; private Integer region; private String serviceInspectionFilePath; private Long startTs; private String summarizationFilePath; private String taskId; private String textPolishFilePath; private String transcriptionFilePath; private Integer vendor; private Builder() { } private Builder(Items model) { this.autoChaptersFilePath = model.autoChaptersFilePath; this.bucket = model.bucket; this.channelId = model.channelId; this.customPromptFilePath = model.customPromptFilePath; this.meetingAssistanceFilePath = model.meetingAssistanceFilePath; this.region = model.region; this.serviceInspectionFilePath = model.serviceInspectionFilePath; this.startTs = model.startTs; this.summarizationFilePath = model.summarizationFilePath; this.taskId = model.taskId; this.textPolishFilePath = model.textPolishFilePath; this.transcriptionFilePath = model.transcriptionFilePath; this.vendor = model.vendor; } /** * AutoChaptersFilePath. */ public Builder autoChaptersFilePath(String autoChaptersFilePath) { this.autoChaptersFilePath = autoChaptersFilePath; return this; } /** * Bucket. */ public Builder bucket(String bucket) { this.bucket = bucket; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CustomPromptFilePath. */ public Builder customPromptFilePath(String customPromptFilePath) { this.customPromptFilePath = customPromptFilePath; return this; } /** * MeetingAssistanceFilePath. */ public Builder meetingAssistanceFilePath(String meetingAssistanceFilePath) { this.meetingAssistanceFilePath = meetingAssistanceFilePath; return this; } /** * Region. */ public Builder region(Integer region) { this.region = region; return this; } /** * ServiceInspectionFilePath. */ public Builder serviceInspectionFilePath(String serviceInspectionFilePath) { this.serviceInspectionFilePath = serviceInspectionFilePath; return this; } /** * StartTs. */ public Builder startTs(Long startTs) { this.startTs = startTs; return this; } /** * SummarizationFilePath. */ public Builder summarizationFilePath(String summarizationFilePath) { this.summarizationFilePath = summarizationFilePath; return this; } /** * TaskId. */ public Builder taskId(String taskId) { this.taskId = taskId; return this; } /** * TextPolishFilePath. */ public Builder textPolishFilePath(String textPolishFilePath) { this.textPolishFilePath = textPolishFilePath; return this; } /** * TranscriptionFilePath. */ public Builder transcriptionFilePath(String transcriptionFilePath) { this.transcriptionFilePath = transcriptionFilePath; return this; } /** * Vendor. */ public Builder vendor(Integer vendor) { this.vendor = vendor; return this; } public Items build() { return new Items(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudRecordStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudRecordStatusRequest} extends {@link RequestModel} * * <p>DescribeCloudRecordStatusRequest</p> */ public class DescribeCloudRecordStatusRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("TaskId") @com.aliyun.core.annotation.Validation(required = true) private String taskId; private DescribeCloudRecordStatusRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.taskId = builder.taskId; } public static Builder builder() { return new Builder(); } public static DescribeCloudRecordStatusRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return taskId */ public String getTaskId() { return this.taskId; } public static final class Builder extends Request.Builder<DescribeCloudRecordStatusRequest, Builder> { private String appId; private String channelId; private String taskId; private Builder() { super(); } private Builder(DescribeCloudRecordStatusRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.taskId = request.taskId; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1qaz***x</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testChannel</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>taskId</p> */ public Builder taskId(String taskId) { this.putQueryParameter("TaskId", taskId); this.taskId = taskId; return this; } @Override public DescribeCloudRecordStatusRequest build() { return new DescribeCloudRecordStatusRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudRecordStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudRecordStatusResponse} extends {@link TeaModel} * * <p>DescribeCloudRecordStatusResponse</p> */ public class DescribeCloudRecordStatusResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeCloudRecordStatusResponseBody body; private DescribeCloudRecordStatusResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeCloudRecordStatusResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeCloudRecordStatusResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeCloudRecordStatusResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeCloudRecordStatusResponseBody body); @Override DescribeCloudRecordStatusResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeCloudRecordStatusResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeCloudRecordStatusResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeCloudRecordStatusResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeCloudRecordStatusResponseBody body) { this.body = body; return this; } @Override public DescribeCloudRecordStatusResponse build() { return new DescribeCloudRecordStatusResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeCloudRecordStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeCloudRecordStatusResponseBody} extends {@link TeaModel} * * <p>DescribeCloudRecordStatusResponseBody</p> */ public class DescribeCloudRecordStatusResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("Status") private Integer status; private DescribeCloudRecordStatusResponseBody(Builder builder) { this.requestId = builder.requestId; this.status = builder.status; } public static Builder builder() { return new Builder(); } public static DescribeCloudRecordStatusResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return status */ public Integer getStatus() { return this.status; } public static final class Builder { private String requestId; private Integer status; private Builder() { } private Builder(DescribeCloudRecordStatusResponseBody model) { this.requestId = model.requestId; this.status = model.status; } /** * <p>Id of the request</p> * * <strong>example:</strong> * <p>16A96B9A-F203-4EC5-8E43-CB92E68F4CF8</p> */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * Status. */ public Builder status(Integer status) { this.status = status; return this; } public DescribeCloudRecordStatusResponseBody build() { return new DescribeCloudRecordStatusResponseBody(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointEventListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointEventListRequest} extends {@link RequestModel} * * <p>DescribeEndPointEventListRequest</p> */ public class DescribeEndPointEventListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserIdList") @com.aliyun.core.annotation.Validation(required = true) private String userIdList; private DescribeEndPointEventListRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.userIdList = builder.userIdList; } public static Builder builder() { return new Builder(); } public static DescribeEndPointEventListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return userIdList */ public String getUserIdList() { return this.userIdList; } public static final class Builder extends Request.Builder<DescribeEndPointEventListRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String userIdList; private Builder() { super(); } private Builder(DescribeEndPointEventListRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.userIdList = request.userIdList; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testuserid1,testuserid2</p> */ public Builder userIdList(String userIdList) { this.putQueryParameter("UserIdList", userIdList); this.userIdList = userIdList; return this; } @Override public DescribeEndPointEventListRequest build() { return new DescribeEndPointEventListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointEventListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointEventListResponse} extends {@link TeaModel} * * <p>DescribeEndPointEventListResponse</p> */ public class DescribeEndPointEventListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeEndPointEventListResponseBody body; private DescribeEndPointEventListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeEndPointEventListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeEndPointEventListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeEndPointEventListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeEndPointEventListResponseBody body); @Override DescribeEndPointEventListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeEndPointEventListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeEndPointEventListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeEndPointEventListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeEndPointEventListResponseBody body) { this.body = body; return this; } @Override public DescribeEndPointEventListResponse build() { return new DescribeEndPointEventListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointEventListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointEventListResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointEventListResponseBody</p> */ public class DescribeEndPointEventListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeEndPointEventListResponseBody(Builder builder) { this.nodes = builder.nodes; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeEndPointEventListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<Nodes> nodes; private String requestId; private Builder() { } private Builder(DescribeEndPointEventListResponseBody model) { this.nodes = model.nodes; this.requestId = model.requestId; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeEndPointEventListResponseBody build() { return new DescribeEndPointEventListResponseBody(this); } } /** * * {@link DescribeEndPointEventListResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointEventListResponseBody</p> */ public static class EventList extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventName") private String eventName; @com.aliyun.core.annotation.NameInMap("EventType") private String eventType; @com.aliyun.core.annotation.NameInMap("Ts") private Long ts; @com.aliyun.core.annotation.NameInMap("TsInMs") private String tsInMs; private EventList(Builder builder) { this.eventName = builder.eventName; this.eventType = builder.eventType; this.ts = builder.ts; this.tsInMs = builder.tsInMs; } public static Builder builder() { return new Builder(); } public static EventList create() { return builder().build(); } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return ts */ public Long getTs() { return this.ts; } /** * @return tsInMs */ public String getTsInMs() { return this.tsInMs; } public static final class Builder { private String eventName; private String eventType; private Long ts; private String tsInMs; private Builder() { } private Builder(EventList model) { this.eventName = model.eventName; this.eventType = model.eventType; this.ts = model.ts; this.tsInMs = model.tsInMs; } /** * EventName. */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * EventType. */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } /** * Ts. */ public Builder ts(Long ts) { this.ts = ts; return this; } /** * TsInMs. */ public Builder tsInMs(String tsInMs) { this.tsInMs = tsInMs; return this; } public EventList build() { return new EventList(this); } } } /** * * {@link DescribeEndPointEventListResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointEventListResponseBody</p> */ public static class EventDataItems extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventList") private java.util.List<EventList> eventList; @com.aliyun.core.annotation.NameInMap("Ts") private Long ts; private EventDataItems(Builder builder) { this.eventList = builder.eventList; this.ts = builder.ts; } public static Builder builder() { return new Builder(); } public static EventDataItems create() { return builder().build(); } /** * @return eventList */ public java.util.List<EventList> getEventList() { return this.eventList; } /** * @return ts */ public Long getTs() { return this.ts; } public static final class Builder { private java.util.List<EventList> eventList; private Long ts; private Builder() { } private Builder(EventDataItems model) { this.eventList = model.eventList; this.ts = model.ts; } /** * EventList. */ public Builder eventList(java.util.List<EventList> eventList) { this.eventList = eventList; return this; } /** * Ts. */ public Builder ts(Long ts) { this.ts = ts; return this; } public EventDataItems build() { return new EventDataItems(this); } } } /** * * {@link DescribeEndPointEventListResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointEventListResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventDataItems") private java.util.List<EventDataItems> eventDataItems; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private Nodes(Builder builder) { this.eventDataItems = builder.eventDataItems; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return eventDataItems */ public java.util.List<EventDataItems> getEventDataItems() { return this.eventDataItems; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<EventDataItems> eventDataItems; private String userId; private Builder() { } private Builder(Nodes model) { this.eventDataItems = model.eventDataItems; this.userId = model.userId; } /** * EventDataItems. */ public Builder eventDataItems(java.util.List<EventDataItems> eventDataItems) { this.eventDataItems = eventDataItems; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public Nodes build() { return new Nodes(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointMetricDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointMetricDataRequest} extends {@link RequestModel} * * <p>DescribeEndPointMetricDataRequest</p> */ public class DescribeEndPointMetricDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Metrics") @com.aliyun.core.annotation.Validation(required = true) private String metrics; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PubCallIdList") private String pubCallIdList; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PubUserId") private String pubUserId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SubUserId") private String subUserId; private DescribeEndPointMetricDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.metrics = builder.metrics; this.pubCallIdList = builder.pubCallIdList; this.pubUserId = builder.pubUserId; this.subUserId = builder.subUserId; } public static Builder builder() { return new Builder(); } public static DescribeEndPointMetricDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return metrics */ public String getMetrics() { return this.metrics; } /** * @return pubCallIdList */ public String getPubCallIdList() { return this.pubCallIdList; } /** * @return pubUserId */ public String getPubUserId() { return this.pubUserId; } /** * @return subUserId */ public String getSubUserId() { return this.subUserId; } public static final class Builder extends Request.Builder<DescribeEndPointMetricDataRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String metrics; private String pubCallIdList; private String pubUserId; private String subUserId; private Builder() { super(); } private Builder(DescribeEndPointMetricDataRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.metrics = request.metrics; this.pubCallIdList = request.pubCallIdList; this.pubUserId = request.pubUserId; this.subUserId = request.subUserId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>VIDEO_STUCK_CAMERA</p> */ public Builder metrics(String metrics) { this.putQueryParameter("Metrics", metrics); this.metrics = metrics; return this; } /** * PubCallIdList. */ public Builder pubCallIdList(String pubCallIdList) { this.putQueryParameter("PubCallIdList", pubCallIdList); this.pubCallIdList = pubCallIdList; return this; } /** * PubUserId. */ public Builder pubUserId(String pubUserId) { this.putQueryParameter("PubUserId", pubUserId); this.pubUserId = pubUserId; return this; } /** * SubUserId. */ public Builder subUserId(String subUserId) { this.putQueryParameter("SubUserId", subUserId); this.subUserId = subUserId; return this; } @Override public DescribeEndPointMetricDataRequest build() { return new DescribeEndPointMetricDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointMetricDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointMetricDataResponse} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponse</p> */ public class DescribeEndPointMetricDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeEndPointMetricDataResponseBody body; private DescribeEndPointMetricDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeEndPointMetricDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeEndPointMetricDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeEndPointMetricDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeEndPointMetricDataResponseBody body); @Override DescribeEndPointMetricDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeEndPointMetricDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeEndPointMetricDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeEndPointMetricDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeEndPointMetricDataResponseBody body) { this.body = body; return this; } @Override public DescribeEndPointMetricDataResponse build() { return new DescribeEndPointMetricDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeEndPointMetricDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeEndPointMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponseBody</p> */ public class DescribeEndPointMetricDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("PubMetrics") private java.util.List<PubMetrics> pubMetrics; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SubMetrics") private java.util.List<SubMetrics> subMetrics; private DescribeEndPointMetricDataResponseBody(Builder builder) { this.pubMetrics = builder.pubMetrics; this.requestId = builder.requestId; this.subMetrics = builder.subMetrics; } public static Builder builder() { return new Builder(); } public static DescribeEndPointMetricDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return pubMetrics */ public java.util.List<PubMetrics> getPubMetrics() { return this.pubMetrics; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return subMetrics */ public java.util.List<SubMetrics> getSubMetrics() { return this.subMetrics; } public static final class Builder { private java.util.List<PubMetrics> pubMetrics; private String requestId; private java.util.List<SubMetrics> subMetrics; private Builder() { } private Builder(DescribeEndPointMetricDataResponseBody model) { this.pubMetrics = model.pubMetrics; this.requestId = model.requestId; this.subMetrics = model.subMetrics; } /** * PubMetrics. */ public Builder pubMetrics(java.util.List<PubMetrics> pubMetrics) { this.pubMetrics = pubMetrics; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * SubMetrics. */ public Builder subMetrics(java.util.List<SubMetrics> subMetrics) { this.subMetrics = subMetrics; return this; } public DescribeEndPointMetricDataResponseBody build() { return new DescribeEndPointMetricDataResponseBody(this); } } /** * * {@link DescribeEndPointMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(Nodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeEndPointMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponseBody</p> */ public static class PubMetrics extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private PubMetrics(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static PubMetrics create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<Nodes> nodes; private String type; private String userId; private Builder() { } private Builder(PubMetrics model) { this.nodes = model.nodes; this.type = model.type; this.userId = model.userId; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public PubMetrics build() { return new PubMetrics(this); } } } /** * * {@link DescribeEndPointMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponseBody</p> */ public static class SubMetricsNodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private SubMetricsNodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static SubMetricsNodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(SubMetricsNodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public SubMetricsNodes build() { return new SubMetricsNodes(this); } } } /** * * {@link DescribeEndPointMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeEndPointMetricDataResponseBody</p> */ public static class SubMetrics extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<SubMetricsNodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private SubMetrics(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static SubMetrics create() { return builder().build(); } /** * @return nodes */ public java.util.List<SubMetricsNodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<SubMetricsNodes> nodes; private String type; private String userId; private Builder() { } private Builder(SubMetrics model) { this.nodes = model.nodes; this.type = model.type; this.userId = model.userId; } /** * Nodes. */ public Builder nodes(java.util.List<SubMetricsNodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public SubMetrics build() { return new SubMetrics(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisFactorDistributionStatRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisFactorDistributionStatRequest} extends {@link RequestModel} * * <p>DescribeFaultDiagnosisFactorDistributionStatRequest</p> */ public class DescribeFaultDiagnosisFactorDistributionStatRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") @com.aliyun.core.annotation.Validation(required = true) private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") @com.aliyun.core.annotation.Validation(required = true) private Long startTs; private DescribeFaultDiagnosisFactorDistributionStatRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endTs = builder.endTs; this.startTs = builder.startTs; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisFactorDistributionStatRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } public static final class Builder extends Request.Builder<DescribeFaultDiagnosisFactorDistributionStatRequest, Builder> { private String appId; private Long endTs; private Long startTs; private Builder() { super(); } private Builder(DescribeFaultDiagnosisFactorDistributionStatRequest request) { super(request); this.appId = request.appId; this.endTs = request.endTs; this.startTs = request.startTs; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615892596****</p> */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615892596</p> */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } @Override public DescribeFaultDiagnosisFactorDistributionStatRequest build() { return new DescribeFaultDiagnosisFactorDistributionStatRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisFactorDistributionStatResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisFactorDistributionStatResponse} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisFactorDistributionStatResponse</p> */ public class DescribeFaultDiagnosisFactorDistributionStatResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeFaultDiagnosisFactorDistributionStatResponseBody body; private DescribeFaultDiagnosisFactorDistributionStatResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFaultDiagnosisFactorDistributionStatResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeFaultDiagnosisFactorDistributionStatResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFaultDiagnosisFactorDistributionStatResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFaultDiagnosisFactorDistributionStatResponseBody body); @Override DescribeFaultDiagnosisFactorDistributionStatResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFaultDiagnosisFactorDistributionStatResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFaultDiagnosisFactorDistributionStatResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFaultDiagnosisFactorDistributionStatResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeFaultDiagnosisFactorDistributionStatResponseBody body) { this.body = body; return this; } @Override public DescribeFaultDiagnosisFactorDistributionStatResponse build() { return new DescribeFaultDiagnosisFactorDistributionStatResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisFactorDistributionStatResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisFactorDistributionStatResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisFactorDistributionStatResponseBody</p> */ public class DescribeFaultDiagnosisFactorDistributionStatResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("StatList") private java.util.List<StatList> statList; private DescribeFaultDiagnosisFactorDistributionStatResponseBody(Builder builder) { this.requestId = builder.requestId; this.statList = builder.statList; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisFactorDistributionStatResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return statList */ public java.util.List<StatList> getStatList() { return this.statList; } public static final class Builder { private String requestId; private java.util.List<StatList> statList; private Builder() { } private Builder(DescribeFaultDiagnosisFactorDistributionStatResponseBody model) { this.requestId = model.requestId; this.statList = model.statList; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * StatList. */ public Builder statList(java.util.List<StatList> statList) { this.statList = statList; return this; } public DescribeFaultDiagnosisFactorDistributionStatResponseBody build() { return new DescribeFaultDiagnosisFactorDistributionStatResponseBody(this); } } /** * * {@link DescribeFaultDiagnosisFactorDistributionStatResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisFactorDistributionStatResponseBody</p> */ public static class StatList extends TeaModel { @com.aliyun.core.annotation.NameInMap("FactorId") private String factorId; @com.aliyun.core.annotation.NameInMap("UserCount") private Integer userCount; @com.aliyun.core.annotation.NameInMap("UserRatio") private Float userRatio; private StatList(Builder builder) { this.factorId = builder.factorId; this.userCount = builder.userCount; this.userRatio = builder.userRatio; } public static Builder builder() { return new Builder(); } public static StatList create() { return builder().build(); } /** * @return factorId */ public String getFactorId() { return this.factorId; } /** * @return userCount */ public Integer getUserCount() { return this.userCount; } /** * @return userRatio */ public Float getUserRatio() { return this.userRatio; } public static final class Builder { private String factorId; private Integer userCount; private Float userRatio; private Builder() { } private Builder(StatList model) { this.factorId = model.factorId; this.userCount = model.userCount; this.userRatio = model.userRatio; } /** * FactorId. */ public Builder factorId(String factorId) { this.factorId = factorId; return this; } /** * UserCount. */ public Builder userCount(Integer userCount) { this.userCount = userCount; return this; } /** * UserRatio. */ public Builder userRatio(Float userRatio) { this.userRatio = userRatio; return this; } public StatList build() { return new StatList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisOverallDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisOverallDataRequest} extends {@link RequestModel} * * <p>DescribeFaultDiagnosisOverallDataRequest</p> */ public class DescribeFaultDiagnosisOverallDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") @com.aliyun.core.annotation.Validation(required = true) private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") @com.aliyun.core.annotation.Validation(required = true) private Long startTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StatDim") @com.aliyun.core.annotation.Validation(required = true) private String statDim; private DescribeFaultDiagnosisOverallDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endTs = builder.endTs; this.startTs = builder.startTs; this.statDim = builder.statDim; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisOverallDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return statDim */ public String getStatDim() { return this.statDim; } public static final class Builder extends Request.Builder<DescribeFaultDiagnosisOverallDataRequest, Builder> { private String appId; private Long endTs; private Long startTs; private String statDim; private Builder() { super(); } private Builder(DescribeFaultDiagnosisOverallDataRequest request) { super(request); this.appId = request.appId; this.endTs = request.endTs; this.startTs = request.startTs; this.statDim = request.statDim; } /** * <p>APP ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>4eah****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615910399</p> */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615824000</p> */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>JOIN_SLOW_USER</p> */ public Builder statDim(String statDim) { this.putQueryParameter("StatDim", statDim); this.statDim = statDim; return this; } @Override public DescribeFaultDiagnosisOverallDataRequest build() { return new DescribeFaultDiagnosisOverallDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisOverallDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisOverallDataResponse} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisOverallDataResponse</p> */ public class DescribeFaultDiagnosisOverallDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeFaultDiagnosisOverallDataResponseBody body; private DescribeFaultDiagnosisOverallDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFaultDiagnosisOverallDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeFaultDiagnosisOverallDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFaultDiagnosisOverallDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFaultDiagnosisOverallDataResponseBody body); @Override DescribeFaultDiagnosisOverallDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFaultDiagnosisOverallDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFaultDiagnosisOverallDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFaultDiagnosisOverallDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeFaultDiagnosisOverallDataResponseBody body) { this.body = body; return this; } @Override public DescribeFaultDiagnosisOverallDataResponse build() { return new DescribeFaultDiagnosisOverallDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisOverallDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisOverallDataResponseBody</p> */ public class DescribeFaultDiagnosisOverallDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("MetricData") private MetricData metricData; @com.aliyun.core.annotation.NameInMap("OverallData") private OverallData overallData; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeFaultDiagnosisOverallDataResponseBody(Builder builder) { this.metricData = builder.metricData; this.overallData = builder.overallData; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisOverallDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return metricData */ public MetricData getMetricData() { return this.metricData; } /** * @return overallData */ public OverallData getOverallData() { return this.overallData; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private MetricData metricData; private OverallData overallData; private String requestId; private Builder() { } private Builder(DescribeFaultDiagnosisOverallDataResponseBody model) { this.metricData = model.metricData; this.overallData = model.overallData; this.requestId = model.requestId; } /** * MetricData. */ public Builder metricData(MetricData metricData) { this.metricData = metricData; return this; } /** * OverallData. */ public Builder overallData(OverallData overallData) { this.overallData = overallData; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeFaultDiagnosisOverallDataResponseBody build() { return new DescribeFaultDiagnosisOverallDataResponseBody(this); } } /** * * {@link DescribeFaultDiagnosisOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisOverallDataResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(Nodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeFaultDiagnosisOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisOverallDataResponseBody</p> */ public static class MetricData extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; private MetricData(Builder builder) { this.nodes = builder.nodes; } public static Builder builder() { return new Builder(); } public static MetricData create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } public static final class Builder { private java.util.List<Nodes> nodes; private Builder() { } private Builder(MetricData model) { this.nodes = model.nodes; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } public MetricData build() { return new MetricData(this); } } } /** * * {@link DescribeFaultDiagnosisOverallDataResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisOverallDataResponseBody</p> */ public static class OverallData extends TeaModel { @com.aliyun.core.annotation.NameInMap("FaultUserCount") private Integer faultUserCount; @com.aliyun.core.annotation.NameInMap("FaultUserRatio") private Float faultUserRatio; @com.aliyun.core.annotation.NameInMap("TotalUserCount") private Integer totalUserCount; private OverallData(Builder builder) { this.faultUserCount = builder.faultUserCount; this.faultUserRatio = builder.faultUserRatio; this.totalUserCount = builder.totalUserCount; } public static Builder builder() { return new Builder(); } public static OverallData create() { return builder().build(); } /** * @return faultUserCount */ public Integer getFaultUserCount() { return this.faultUserCount; } /** * @return faultUserRatio */ public Float getFaultUserRatio() { return this.faultUserRatio; } /** * @return totalUserCount */ public Integer getTotalUserCount() { return this.totalUserCount; } public static final class Builder { private Integer faultUserCount; private Float faultUserRatio; private Integer totalUserCount; private Builder() { } private Builder(OverallData model) { this.faultUserCount = model.faultUserCount; this.faultUserRatio = model.faultUserRatio; this.totalUserCount = model.totalUserCount; } /** * FaultUserCount. */ public Builder faultUserCount(Integer faultUserCount) { this.faultUserCount = faultUserCount; return this; } /** * FaultUserRatio. */ public Builder faultUserRatio(Float faultUserRatio) { this.faultUserRatio = faultUserRatio; return this; } /** * TotalUserCount. */ public Builder totalUserCount(Integer totalUserCount) { this.totalUserCount = totalUserCount; return this; } public OverallData build() { return new OverallData(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserDetailRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserDetailRequest} extends {@link RequestModel} * * <p>DescribeFaultDiagnosisUserDetailRequest</p> */ public class DescribeFaultDiagnosisUserDetailRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FaultType") @com.aliyun.core.annotation.Validation(required = true) private String faultType; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("QueryCallUserInfo") private Boolean queryCallUserInfo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserId") @com.aliyun.core.annotation.Validation(required = true) private String userId; private DescribeFaultDiagnosisUserDetailRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.faultType = builder.faultType; this.queryCallUserInfo = builder.queryCallUserInfo; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisUserDetailRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return faultType */ public String getFaultType() { return this.faultType; } /** * @return queryCallUserInfo */ public Boolean getQueryCallUserInfo() { return this.queryCallUserInfo; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder extends Request.Builder<DescribeFaultDiagnosisUserDetailRequest, Builder> { private String appId; private String channelId; private Long createdTs; private String faultType; private Boolean queryCallUserInfo; private String userId; private Builder() { super(); } private Builder(DescribeFaultDiagnosisUserDetailRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.faultType = request.faultType; this.queryCallUserInfo = request.queryCallUserInfo; this.userId = request.userId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>311</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615892596</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>JOIN_SLOW</p> */ public Builder faultType(String faultType) { this.putQueryParameter("FaultType", faultType); this.faultType = faultType; return this; } /** * QueryCallUserInfo. */ public Builder queryCallUserInfo(Boolean queryCallUserInfo) { this.putQueryParameter("QueryCallUserInfo", queryCallUserInfo); this.queryCallUserInfo = queryCallUserInfo; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>c906531af5f9****</p> */ public Builder userId(String userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public DescribeFaultDiagnosisUserDetailRequest build() { return new DescribeFaultDiagnosisUserDetailRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserDetailResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserDetailResponse} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponse</p> */ public class DescribeFaultDiagnosisUserDetailResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeFaultDiagnosisUserDetailResponseBody body; private DescribeFaultDiagnosisUserDetailResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFaultDiagnosisUserDetailResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeFaultDiagnosisUserDetailResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFaultDiagnosisUserDetailResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFaultDiagnosisUserDetailResponseBody body); @Override DescribeFaultDiagnosisUserDetailResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFaultDiagnosisUserDetailResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFaultDiagnosisUserDetailResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFaultDiagnosisUserDetailResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeFaultDiagnosisUserDetailResponseBody body) { this.body = body; return this; } @Override public DescribeFaultDiagnosisUserDetailResponse build() { return new DescribeFaultDiagnosisUserDetailResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserDetailResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public class DescribeFaultDiagnosisUserDetailResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallInfo") private CallInfo callInfo; @com.aliyun.core.annotation.NameInMap("FactorList") private java.util.List<FactorList> factorList; @com.aliyun.core.annotation.NameInMap("FaultMetricData") private FaultMetricData faultMetricData; @com.aliyun.core.annotation.NameInMap("NetworkOperators") private java.util.List<String> networkOperators; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("UserDetail") private UserDetail userDetail; private DescribeFaultDiagnosisUserDetailResponseBody(Builder builder) { this.callInfo = builder.callInfo; this.factorList = builder.factorList; this.faultMetricData = builder.faultMetricData; this.networkOperators = builder.networkOperators; this.requestId = builder.requestId; this.userDetail = builder.userDetail; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisUserDetailResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callInfo */ public CallInfo getCallInfo() { return this.callInfo; } /** * @return factorList */ public java.util.List<FactorList> getFactorList() { return this.factorList; } /** * @return faultMetricData */ public FaultMetricData getFaultMetricData() { return this.faultMetricData; } /** * @return networkOperators */ public java.util.List<String> getNetworkOperators() { return this.networkOperators; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return userDetail */ public UserDetail getUserDetail() { return this.userDetail; } public static final class Builder { private CallInfo callInfo; private java.util.List<FactorList> factorList; private FaultMetricData faultMetricData; private java.util.List<String> networkOperators; private String requestId; private UserDetail userDetail; private Builder() { } private Builder(DescribeFaultDiagnosisUserDetailResponseBody model) { this.callInfo = model.callInfo; this.factorList = model.factorList; this.faultMetricData = model.faultMetricData; this.networkOperators = model.networkOperators; this.requestId = model.requestId; this.userDetail = model.userDetail; } /** * CallInfo. */ public Builder callInfo(CallInfo callInfo) { this.callInfo = callInfo; return this; } /** * FactorList. */ public Builder factorList(java.util.List<FactorList> factorList) { this.factorList = factorList; return this; } /** * FaultMetricData. */ public Builder faultMetricData(FaultMetricData faultMetricData) { this.faultMetricData = faultMetricData; return this; } /** * NetworkOperators. */ public Builder networkOperators(java.util.List<String> networkOperators) { this.networkOperators = networkOperators; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * UserDetail. */ public Builder userDetail(UserDetail userDetail) { this.userDetail = userDetail; return this; } public DescribeFaultDiagnosisUserDetailResponseBody build() { return new DescribeFaultDiagnosisUserDetailResponseBody(this); } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class CallInfo extends TeaModel { @com.aliyun.core.annotation.NameInMap("AppId") private String appId; @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; private CallInfo(Builder builder) { this.appId = builder.appId; this.callStatus = builder.callStatus; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; } public static Builder builder() { return new Builder(); } public static CallInfo create() { return builder().build(); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } public static final class Builder { private String appId; private String callStatus; private String channelId; private Long createdTs; private Long destroyedTs; private Long duration; private Builder() { } private Builder(CallInfo model) { this.appId = model.appId; this.callStatus = model.callStatus; this.channelId = model.channelId; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; } /** * <p>App ID。</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.appId = appId; return this; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.callStatus = callStatus; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } public CallInfo build() { return new CallInfo(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class EventList extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventName") private String eventName; @com.aliyun.core.annotation.NameInMap("EventType") private String eventType; @com.aliyun.core.annotation.NameInMap("Ts") private Long ts; private EventList(Builder builder) { this.eventName = builder.eventName; this.eventType = builder.eventType; this.ts = builder.ts; } public static Builder builder() { return new Builder(); } public static EventList create() { return builder().build(); } /** * @return eventName */ public String getEventName() { return this.eventName; } /** * @return eventType */ public String getEventType() { return this.eventType; } /** * @return ts */ public Long getTs() { return this.ts; } public static final class Builder { private String eventName; private String eventType; private Long ts; private Builder() { } private Builder(EventList model) { this.eventName = model.eventName; this.eventType = model.eventType; this.ts = model.ts; } /** * EventName. */ public Builder eventName(String eventName) { this.eventName = eventName; return this; } /** * EventType. */ public Builder eventType(String eventType) { this.eventType = eventType; return this; } /** * Ts. */ public Builder ts(Long ts) { this.ts = ts; return this; } public EventList build() { return new EventList(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class EventDataItems extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventList") private java.util.List<EventList> eventList; @com.aliyun.core.annotation.NameInMap("Ts") private Long ts; private EventDataItems(Builder builder) { this.eventList = builder.eventList; this.ts = builder.ts; } public static Builder builder() { return new Builder(); } public static EventDataItems create() { return builder().build(); } /** * @return eventList */ public java.util.List<EventList> getEventList() { return this.eventList; } /** * @return ts */ public Long getTs() { return this.ts; } public static final class Builder { private java.util.List<EventList> eventList; private Long ts; private Builder() { } private Builder(EventDataItems model) { this.eventList = model.eventList; this.ts = model.ts; } /** * EventList. */ public Builder eventList(java.util.List<EventList> eventList) { this.eventList = eventList; return this; } /** * Ts. */ public Builder ts(Long ts) { this.ts = ts; return this; } public EventDataItems build() { return new EventDataItems(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class RelatedEventDatas extends TeaModel { @com.aliyun.core.annotation.NameInMap("EventDataItems") private java.util.List<EventDataItems> eventDataItems; @com.aliyun.core.annotation.NameInMap("Role") private String role; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private RelatedEventDatas(Builder builder) { this.eventDataItems = builder.eventDataItems; this.role = builder.role; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static RelatedEventDatas create() { return builder().build(); } /** * @return eventDataItems */ public java.util.List<EventDataItems> getEventDataItems() { return this.eventDataItems; } /** * @return role */ public String getRole() { return this.role; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<EventDataItems> eventDataItems; private String role; private String userId; private Builder() { } private Builder(RelatedEventDatas model) { this.eventDataItems = model.eventDataItems; this.role = model.role; this.userId = model.userId; } /** * EventDataItems. */ public Builder eventDataItems(java.util.List<EventDataItems> eventDataItems) { this.eventDataItems = eventDataItems; return this; } /** * Role. */ public Builder role(String role) { this.role = role; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public RelatedEventDatas build() { return new RelatedEventDatas(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Ext") private java.util.Map<String, ?> ext; @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.ext = builder.ext; this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return ext */ public java.util.Map<String, ?> getExt() { return this.ext; } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private java.util.Map<String, ?> ext; private String x; private String y; private Builder() { } private Builder(Nodes model) { this.ext = model.ext; this.x = model.x; this.y = model.y; } /** * Ext. */ public Builder ext(java.util.Map<String, ?> ext) { this.ext = ext; return this; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class RelatedMetricDatas extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("Role") private String role; @com.aliyun.core.annotation.NameInMap("Type") private String type; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private RelatedMetricDatas(Builder builder) { this.nodes = builder.nodes; this.role = builder.role; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static RelatedMetricDatas create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return role */ public String getRole() { return this.role; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<Nodes> nodes; private String role; private String type; private String userId; private Builder() { } private Builder(RelatedMetricDatas model) { this.nodes = model.nodes; this.role = model.role; this.type = model.type; this.userId = model.userId; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * Role. */ public Builder role(String role) { this.role = role; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public RelatedMetricDatas build() { return new RelatedMetricDatas(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class FactorList extends TeaModel { @com.aliyun.core.annotation.NameInMap("FactorId") private String factorId; @com.aliyun.core.annotation.NameInMap("FaultSource") private String faultSource; @com.aliyun.core.annotation.NameInMap("RelatedEventDatas") private java.util.List<RelatedEventDatas> relatedEventDatas; @com.aliyun.core.annotation.NameInMap("RelatedMetricDatas") private java.util.List<RelatedMetricDatas> relatedMetricDatas; private FactorList(Builder builder) { this.factorId = builder.factorId; this.faultSource = builder.faultSource; this.relatedEventDatas = builder.relatedEventDatas; this.relatedMetricDatas = builder.relatedMetricDatas; } public static Builder builder() { return new Builder(); } public static FactorList create() { return builder().build(); } /** * @return factorId */ public String getFactorId() { return this.factorId; } /** * @return faultSource */ public String getFaultSource() { return this.faultSource; } /** * @return relatedEventDatas */ public java.util.List<RelatedEventDatas> getRelatedEventDatas() { return this.relatedEventDatas; } /** * @return relatedMetricDatas */ public java.util.List<RelatedMetricDatas> getRelatedMetricDatas() { return this.relatedMetricDatas; } public static final class Builder { private String factorId; private String faultSource; private java.util.List<RelatedEventDatas> relatedEventDatas; private java.util.List<RelatedMetricDatas> relatedMetricDatas; private Builder() { } private Builder(FactorList model) { this.factorId = model.factorId; this.faultSource = model.faultSource; this.relatedEventDatas = model.relatedEventDatas; this.relatedMetricDatas = model.relatedMetricDatas; } /** * FactorId. */ public Builder factorId(String factorId) { this.factorId = factorId; return this; } /** * FaultSource. */ public Builder faultSource(String faultSource) { this.faultSource = faultSource; return this; } /** * RelatedEventDatas. */ public Builder relatedEventDatas(java.util.List<RelatedEventDatas> relatedEventDatas) { this.relatedEventDatas = relatedEventDatas; return this; } /** * RelatedMetricDatas. */ public Builder relatedMetricDatas(java.util.List<RelatedMetricDatas> relatedMetricDatas) { this.relatedMetricDatas = relatedMetricDatas; return this; } public FactorList build() { return new FactorList(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class FaultMetricDataNodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private FaultMetricDataNodes(Builder builder) { this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static FaultMetricDataNodes create() { return builder().build(); } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private String x; private String y; private Builder() { } private Builder(FaultMetricDataNodes model) { this.x = model.x; this.y = model.y; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public FaultMetricDataNodes build() { return new FaultMetricDataNodes(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class FaultMetricData extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<FaultMetricDataNodes> nodes; private FaultMetricData(Builder builder) { this.nodes = builder.nodes; } public static Builder builder() { return new Builder(); } public static FaultMetricData create() { return builder().build(); } /** * @return nodes */ public java.util.List<FaultMetricDataNodes> getNodes() { return this.nodes; } public static final class Builder { private java.util.List<FaultMetricDataNodes> nodes; private Builder() { } private Builder(FaultMetricData model) { this.nodes = model.nodes; } /** * Nodes. */ public Builder nodes(java.util.List<FaultMetricDataNodes> nodes) { this.nodes = nodes; return this; } public FaultMetricData build() { return new FaultMetricData(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class OnlinePeriods extends TeaModel { @com.aliyun.core.annotation.NameInMap("JoinTs") private Long joinTs; @com.aliyun.core.annotation.NameInMap("LeaveTs") private Long leaveTs; private OnlinePeriods(Builder builder) { this.joinTs = builder.joinTs; this.leaveTs = builder.leaveTs; } public static Builder builder() { return new Builder(); } public static OnlinePeriods create() { return builder().build(); } /** * @return joinTs */ public Long getJoinTs() { return this.joinTs; } /** * @return leaveTs */ public Long getLeaveTs() { return this.leaveTs; } public static final class Builder { private Long joinTs; private Long leaveTs; private Builder() { } private Builder(OnlinePeriods model) { this.joinTs = model.joinTs; this.leaveTs = model.leaveTs; } /** * JoinTs. */ public Builder joinTs(Long joinTs) { this.joinTs = joinTs; return this; } /** * LeaveTs. */ public Builder leaveTs(Long leaveTs) { this.leaveTs = leaveTs; return this; } public OnlinePeriods build() { return new OnlinePeriods(this); } } } /** * * {@link DescribeFaultDiagnosisUserDetailResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserDetailResponseBody</p> */ public static class UserDetail extends TeaModel { @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("Location") private String location; @com.aliyun.core.annotation.NameInMap("Network") private String network; @com.aliyun.core.annotation.NameInMap("OnlineDuration") private Long onlineDuration; @com.aliyun.core.annotation.NameInMap("OnlinePeriods") private java.util.List<OnlinePeriods> onlinePeriods; @com.aliyun.core.annotation.NameInMap("Os") private String os; @com.aliyun.core.annotation.NameInMap("SdkVersion") private String sdkVersion; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private UserDetail(Builder builder) { this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; this.location = builder.location; this.network = builder.network; this.onlineDuration = builder.onlineDuration; this.onlinePeriods = builder.onlinePeriods; this.os = builder.os; this.sdkVersion = builder.sdkVersion; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static UserDetail create() { return builder().build(); } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return location */ public String getLocation() { return this.location; } /** * @return network */ public String getNetwork() { return this.network; } /** * @return onlineDuration */ public Long getOnlineDuration() { return this.onlineDuration; } /** * @return onlinePeriods */ public java.util.List<OnlinePeriods> getOnlinePeriods() { return this.onlinePeriods; } /** * @return os */ public String getOs() { return this.os; } /** * @return sdkVersion */ public String getSdkVersion() { return this.sdkVersion; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Long createdTs; private Long destroyedTs; private Long duration; private String location; private String network; private Long onlineDuration; private java.util.List<OnlinePeriods> onlinePeriods; private String os; private String sdkVersion; private String userId; private Builder() { } private Builder(UserDetail model) { this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; this.location = model.location; this.network = model.network; this.onlineDuration = model.onlineDuration; this.onlinePeriods = model.onlinePeriods; this.os = model.os; this.sdkVersion = model.sdkVersion; this.userId = model.userId; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * Location. */ public Builder location(String location) { this.location = location; return this; } /** * Network. */ public Builder network(String network) { this.network = network; return this; } /** * OnlineDuration. */ public Builder onlineDuration(Long onlineDuration) { this.onlineDuration = onlineDuration; return this; } /** * OnlinePeriods. */ public Builder onlinePeriods(java.util.List<OnlinePeriods> onlinePeriods) { this.onlinePeriods = onlinePeriods; return this; } /** * Os. */ public Builder os(String os) { this.os = os; return this; } /** * SdkVersion. */ public Builder sdkVersion(String sdkVersion) { this.sdkVersion = sdkVersion; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public UserDetail build() { return new UserDetail(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserListRequest} extends {@link RequestModel} * * <p>DescribeFaultDiagnosisUserListRequest</p> */ public class DescribeFaultDiagnosisUserListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndTs") @com.aliyun.core.annotation.Validation(required = true) private Long endTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("FaultTypes") private String faultTypes; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNo") @com.aliyun.core.annotation.Validation(required = true) private Integer pageNo; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") @com.aliyun.core.annotation.Validation(required = true) private Integer pageSize; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartTs") @com.aliyun.core.annotation.Validation(required = true) private Long startTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private DescribeFaultDiagnosisUserListRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.endTs = builder.endTs; this.faultTypes = builder.faultTypes; this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.startTs = builder.startTs; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisUserListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return endTs */ public Long getEndTs() { return this.endTs; } /** * @return faultTypes */ public String getFaultTypes() { return this.faultTypes; } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return startTs */ public Long getStartTs() { return this.startTs; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder extends Request.Builder<DescribeFaultDiagnosisUserListRequest, Builder> { private String appId; private String channelId; private Long endTs; private String faultTypes; private Integer pageNo; private Integer pageSize; private Long startTs; private String userId; private Builder() { super(); } private Builder(DescribeFaultDiagnosisUserListRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.endTs = request.endTs; this.faultTypes = request.faultTypes; this.pageNo = request.pageNo; this.pageSize = request.pageSize; this.startTs = request.startTs; this.userId = request.userId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615892596</p> */ public Builder endTs(Long endTs) { this.putQueryParameter("EndTs", endTs); this.endTs = endTs; return this; } /** * FaultTypes. */ public Builder faultTypes(String faultTypes) { this.putQueryParameter("FaultTypes", faultTypes); this.faultTypes = faultTypes; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ public Builder pageNo(Integer pageNo) { this.putQueryParameter("PageNo", pageNo); this.pageNo = pageNo; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ public Builder pageSize(Integer pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615806196</p> */ public Builder startTs(Long startTs) { this.putQueryParameter("StartTs", startTs); this.startTs = startTs; return this; } /** * UserId. */ public Builder userId(String userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public DescribeFaultDiagnosisUserListRequest build() { return new DescribeFaultDiagnosisUserListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserListResponse} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserListResponse</p> */ public class DescribeFaultDiagnosisUserListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeFaultDiagnosisUserListResponseBody body; private DescribeFaultDiagnosisUserListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeFaultDiagnosisUserListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeFaultDiagnosisUserListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeFaultDiagnosisUserListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeFaultDiagnosisUserListResponseBody body); @Override DescribeFaultDiagnosisUserListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeFaultDiagnosisUserListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeFaultDiagnosisUserListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeFaultDiagnosisUserListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeFaultDiagnosisUserListResponseBody body) { this.body = body; return this; } @Override public DescribeFaultDiagnosisUserListResponse build() { return new DescribeFaultDiagnosisUserListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeFaultDiagnosisUserListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeFaultDiagnosisUserListResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserListResponseBody</p> */ public class DescribeFaultDiagnosisUserListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("PageNo") private Integer pageNo; @com.aliyun.core.annotation.NameInMap("PageSize") private Integer pageSize; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalCnt") private Integer totalCnt; @com.aliyun.core.annotation.NameInMap("UserList") private java.util.List<UserList> userList; private DescribeFaultDiagnosisUserListResponseBody(Builder builder) { this.pageNo = builder.pageNo; this.pageSize = builder.pageSize; this.requestId = builder.requestId; this.totalCnt = builder.totalCnt; this.userList = builder.userList; } public static Builder builder() { return new Builder(); } public static DescribeFaultDiagnosisUserListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return pageNo */ public Integer getPageNo() { return this.pageNo; } /** * @return pageSize */ public Integer getPageSize() { return this.pageSize; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalCnt */ public Integer getTotalCnt() { return this.totalCnt; } /** * @return userList */ public java.util.List<UserList> getUserList() { return this.userList; } public static final class Builder { private Integer pageNo; private Integer pageSize; private String requestId; private Integer totalCnt; private java.util.List<UserList> userList; private Builder() { } private Builder(DescribeFaultDiagnosisUserListResponseBody model) { this.pageNo = model.pageNo; this.pageSize = model.pageSize; this.requestId = model.requestId; this.totalCnt = model.totalCnt; this.userList = model.userList; } /** * PageNo. */ public Builder pageNo(Integer pageNo) { this.pageNo = pageNo; return this; } /** * PageSize. */ public Builder pageSize(Integer pageSize) { this.pageSize = pageSize; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalCnt. */ public Builder totalCnt(Integer totalCnt) { this.totalCnt = totalCnt; return this; } /** * UserList. */ public Builder userList(java.util.List<UserList> userList) { this.userList = userList; return this; } public DescribeFaultDiagnosisUserListResponseBody build() { return new DescribeFaultDiagnosisUserListResponseBody(this); } } /** * * {@link DescribeFaultDiagnosisUserListResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserListResponseBody</p> */ public static class FaultList extends TeaModel { @com.aliyun.core.annotation.NameInMap("FaultType") private String faultType; private FaultList(Builder builder) { this.faultType = builder.faultType; } public static Builder builder() { return new Builder(); } public static FaultList create() { return builder().build(); } /** * @return faultType */ public String getFaultType() { return this.faultType; } public static final class Builder { private String faultType; private Builder() { } private Builder(FaultList model) { this.faultType = model.faultType; } /** * FaultType. */ public Builder faultType(String faultType) { this.faultType = faultType; return this; } public FaultList build() { return new FaultList(this); } } } /** * * {@link DescribeFaultDiagnosisUserListResponseBody} extends {@link TeaModel} * * <p>DescribeFaultDiagnosisUserListResponseBody</p> */ public static class UserList extends TeaModel { @com.aliyun.core.annotation.NameInMap("ChannelCreatedTs") private Long channelCreatedTs; @com.aliyun.core.annotation.NameInMap("ChannelId") private String channelId; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("FaultList") private java.util.List<FaultList> faultList; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private UserList(Builder builder) { this.channelCreatedTs = builder.channelCreatedTs; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.faultList = builder.faultList; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static UserList create() { return builder().build(); } /** * @return channelCreatedTs */ public Long getChannelCreatedTs() { return this.channelCreatedTs; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return faultList */ public java.util.List<FaultList> getFaultList() { return this.faultList; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private Long channelCreatedTs; private String channelId; private Long createdTs; private Long destroyedTs; private java.util.List<FaultList> faultList; private String userId; private Builder() { } private Builder(UserList model) { this.channelCreatedTs = model.channelCreatedTs; this.channelId = model.channelId; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.faultList = model.faultList; this.userId = model.userId; } /** * ChannelCreatedTs. */ public Builder channelCreatedTs(Long channelCreatedTs) { this.channelCreatedTs = channelCreatedTs; return this; } /** * ChannelId. */ public Builder channelId(String channelId) { this.channelId = channelId; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * FaultList. */ public Builder faultList(java.util.List<FaultList> faultList) { this.faultList = faultList; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public UserList build() { return new UserList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeMPULayoutInfoListRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMPULayoutInfoListRequest} extends {@link RequestModel} * * <p>DescribeMPULayoutInfoListRequest</p> */ public class DescribeMPULayoutInfoListRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("LayoutId") private Long layoutId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("OwnerId") private Long ownerId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageNum") private Long pageNum; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("PageSize") private Long pageSize; private DescribeMPULayoutInfoListRequest(Builder builder) { super(builder); this.appId = builder.appId; this.layoutId = builder.layoutId; this.name = builder.name; this.ownerId = builder.ownerId; this.pageNum = builder.pageNum; this.pageSize = builder.pageSize; } public static Builder builder() { return new Builder(); } public static DescribeMPULayoutInfoListRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return layoutId */ public Long getLayoutId() { return this.layoutId; } /** * @return name */ public String getName() { return this.name; } /** * @return ownerId */ public Long getOwnerId() { return this.ownerId; } /** * @return pageNum */ public Long getPageNum() { return this.pageNum; } /** * @return pageSize */ public Long getPageSize() { return this.pageSize; } public static final class Builder extends Request.Builder<DescribeMPULayoutInfoListRequest, Builder> { private String appId; private Long layoutId; private String name; private Long ownerId; private Long pageNum; private Long pageSize; private Builder() { super(); } private Builder(DescribeMPULayoutInfoListRequest request) { super(request); this.appId = request.appId; this.layoutId = request.layoutId; this.name = request.name; this.ownerId = request.ownerId; this.pageNum = request.pageNum; this.pageSize = request.pageSize; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>yourAppId</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * LayoutId. */ public Builder layoutId(Long layoutId) { this.putQueryParameter("LayoutId", layoutId); this.layoutId = layoutId; return this; } /** * Name. */ public Builder name(String name) { this.putQueryParameter("Name", name); this.name = name; return this; } /** * OwnerId. */ public Builder ownerId(Long ownerId) { this.putQueryParameter("OwnerId", ownerId); this.ownerId = ownerId; return this; } /** * PageNum. */ public Builder pageNum(Long pageNum) { this.putQueryParameter("PageNum", pageNum); this.pageNum = pageNum; return this; } /** * PageSize. */ public Builder pageSize(Long pageSize) { this.putQueryParameter("PageSize", pageSize); this.pageSize = pageSize; return this; } @Override public DescribeMPULayoutInfoListRequest build() { return new DescribeMPULayoutInfoListRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeMPULayoutInfoListResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMPULayoutInfoListResponse} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponse</p> */ public class DescribeMPULayoutInfoListResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeMPULayoutInfoListResponseBody body; private DescribeMPULayoutInfoListResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeMPULayoutInfoListResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeMPULayoutInfoListResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeMPULayoutInfoListResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeMPULayoutInfoListResponseBody body); @Override DescribeMPULayoutInfoListResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeMPULayoutInfoListResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeMPULayoutInfoListResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeMPULayoutInfoListResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeMPULayoutInfoListResponseBody body) { this.body = body; return this; } @Override public DescribeMPULayoutInfoListResponse build() { return new DescribeMPULayoutInfoListResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeMPULayoutInfoListResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeMPULayoutInfoListResponseBody} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponseBody</p> */ public class DescribeMPULayoutInfoListResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("Layouts") private Layouts layouts; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("TotalNum") private Long totalNum; @com.aliyun.core.annotation.NameInMap("TotalPage") private Long totalPage; private DescribeMPULayoutInfoListResponseBody(Builder builder) { this.layouts = builder.layouts; this.requestId = builder.requestId; this.totalNum = builder.totalNum; this.totalPage = builder.totalPage; } public static Builder builder() { return new Builder(); } public static DescribeMPULayoutInfoListResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return layouts */ public Layouts getLayouts() { return this.layouts; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return totalNum */ public Long getTotalNum() { return this.totalNum; } /** * @return totalPage */ public Long getTotalPage() { return this.totalPage; } public static final class Builder { private Layouts layouts; private String requestId; private Long totalNum; private Long totalPage; private Builder() { } private Builder(DescribeMPULayoutInfoListResponseBody model) { this.layouts = model.layouts; this.requestId = model.requestId; this.totalNum = model.totalNum; this.totalPage = model.totalPage; } /** * Layouts. */ public Builder layouts(Layouts layouts) { this.layouts = layouts; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * TotalNum. */ public Builder totalNum(Long totalNum) { this.totalNum = totalNum; return this; } /** * TotalPage. */ public Builder totalPage(Long totalPage) { this.totalPage = totalPage; return this; } public DescribeMPULayoutInfoListResponseBody build() { return new DescribeMPULayoutInfoListResponseBody(this); } } /** * * {@link DescribeMPULayoutInfoListResponseBody} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponseBody</p> */ public static class Panes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Height") private Float height; @com.aliyun.core.annotation.NameInMap("MajorPane") private Integer majorPane; @com.aliyun.core.annotation.NameInMap("PaneId") private Integer paneId; @com.aliyun.core.annotation.NameInMap("Width") private Float width; @com.aliyun.core.annotation.NameInMap("X") private Float x; @com.aliyun.core.annotation.NameInMap("Y") private Float y; @com.aliyun.core.annotation.NameInMap("ZOrder") private Integer zOrder; private Panes(Builder builder) { this.height = builder.height; this.majorPane = builder.majorPane; this.paneId = builder.paneId; this.width = builder.width; this.x = builder.x; this.y = builder.y; this.zOrder = builder.zOrder; } public static Builder builder() { return new Builder(); } public static Panes create() { return builder().build(); } /** * @return height */ public Float getHeight() { return this.height; } /** * @return majorPane */ public Integer getMajorPane() { return this.majorPane; } /** * @return paneId */ public Integer getPaneId() { return this.paneId; } /** * @return width */ public Float getWidth() { return this.width; } /** * @return x */ public Float getX() { return this.x; } /** * @return y */ public Float getY() { return this.y; } /** * @return zOrder */ public Integer getZOrder() { return this.zOrder; } public static final class Builder { private Float height; private Integer majorPane; private Integer paneId; private Float width; private Float x; private Float y; private Integer zOrder; private Builder() { } private Builder(Panes model) { this.height = model.height; this.majorPane = model.majorPane; this.paneId = model.paneId; this.width = model.width; this.x = model.x; this.y = model.y; this.zOrder = model.zOrder; } /** * Height. */ public Builder height(Float height) { this.height = height; return this; } /** * MajorPane. */ public Builder majorPane(Integer majorPane) { this.majorPane = majorPane; return this; } /** * PaneId. */ public Builder paneId(Integer paneId) { this.paneId = paneId; return this; } /** * Width. */ public Builder width(Float width) { this.width = width; return this; } /** * X. */ public Builder x(Float x) { this.x = x; return this; } /** * Y. */ public Builder y(Float y) { this.y = y; return this; } /** * ZOrder. */ public Builder zOrder(Integer zOrder) { this.zOrder = zOrder; return this; } public Panes build() { return new Panes(this); } } } /** * * {@link DescribeMPULayoutInfoListResponseBody} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponseBody</p> */ public static class LayoutPanes extends TeaModel { @com.aliyun.core.annotation.NameInMap("Panes") private java.util.List<Panes> panes; private LayoutPanes(Builder builder) { this.panes = builder.panes; } public static Builder builder() { return new Builder(); } public static LayoutPanes create() { return builder().build(); } /** * @return panes */ public java.util.List<Panes> getPanes() { return this.panes; } public static final class Builder { private java.util.List<Panes> panes; private Builder() { } private Builder(LayoutPanes model) { this.panes = model.panes; } /** * Panes. */ public Builder panes(java.util.List<Panes> panes) { this.panes = panes; return this; } public LayoutPanes build() { return new LayoutPanes(this); } } } /** * * {@link DescribeMPULayoutInfoListResponseBody} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponseBody</p> */ public static class Layout extends TeaModel { @com.aliyun.core.annotation.NameInMap("AudioMixCount") private Integer audioMixCount; @com.aliyun.core.annotation.NameInMap("LayoutId") private Long layoutId; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Panes") private LayoutPanes panes; private Layout(Builder builder) { this.audioMixCount = builder.audioMixCount; this.layoutId = builder.layoutId; this.name = builder.name; this.panes = builder.panes; } public static Builder builder() { return new Builder(); } public static Layout create() { return builder().build(); } /** * @return audioMixCount */ public Integer getAudioMixCount() { return this.audioMixCount; } /** * @return layoutId */ public Long getLayoutId() { return this.layoutId; } /** * @return name */ public String getName() { return this.name; } /** * @return panes */ public LayoutPanes getPanes() { return this.panes; } public static final class Builder { private Integer audioMixCount; private Long layoutId; private String name; private LayoutPanes panes; private Builder() { } private Builder(Layout model) { this.audioMixCount = model.audioMixCount; this.layoutId = model.layoutId; this.name = model.name; this.panes = model.panes; } /** * AudioMixCount. */ public Builder audioMixCount(Integer audioMixCount) { this.audioMixCount = audioMixCount; return this; } /** * LayoutId. */ public Builder layoutId(Long layoutId) { this.layoutId = layoutId; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Panes. */ public Builder panes(LayoutPanes panes) { this.panes = panes; return this; } public Layout build() { return new Layout(this); } } } /** * * {@link DescribeMPULayoutInfoListResponseBody} extends {@link TeaModel} * * <p>DescribeMPULayoutInfoListResponseBody</p> */ public static class Layouts extends TeaModel { @com.aliyun.core.annotation.NameInMap("Layout") private java.util.List<Layout> layout; private Layouts(Builder builder) { this.layout = builder.layout; } public static Builder builder() { return new Builder(); } public static Layouts create() { return builder().build(); } /** * @return layout */ public java.util.List<Layout> getLayout() { return this.layout; } public static final class Builder { private java.util.List<Layout> layout; private Builder() { } private Builder(Layouts model) { this.layout = model.layout; } /** * Layout. */ public Builder layout(java.util.List<Layout> layout) { this.layout = layout; return this; } public Layouts build() { return new Layouts(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribePubUserListBySubUserRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribePubUserListBySubUserRequest} extends {@link RequestModel} * * <p>DescribePubUserListBySubUserRequest</p> */ public class DescribePubUserListBySubUserRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("SubUserId") @com.aliyun.core.annotation.Validation(required = true) private String subUserId; private DescribePubUserListBySubUserRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.subUserId = builder.subUserId; } public static Builder builder() { return new Builder(); } public static DescribePubUserListBySubUserRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return subUserId */ public String getSubUserId() { return this.subUserId; } public static final class Builder extends Request.Builder<DescribePubUserListBySubUserRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String subUserId; private Builder() { super(); } private Builder(DescribePubUserListBySubUserRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.subUserId = request.subUserId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testuserid</p> */ public Builder subUserId(String subUserId) { this.putQueryParameter("SubUserId", subUserId); this.subUserId = subUserId; return this; } @Override public DescribePubUserListBySubUserRequest build() { return new DescribePubUserListBySubUserRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribePubUserListBySubUserResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribePubUserListBySubUserResponse} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponse</p> */ public class DescribePubUserListBySubUserResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribePubUserListBySubUserResponseBody body; private DescribePubUserListBySubUserResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribePubUserListBySubUserResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribePubUserListBySubUserResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribePubUserListBySubUserResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribePubUserListBySubUserResponseBody body); @Override DescribePubUserListBySubUserResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribePubUserListBySubUserResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribePubUserListBySubUserResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribePubUserListBySubUserResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribePubUserListBySubUserResponseBody body) { this.body = body; return this; } @Override public DescribePubUserListBySubUserResponse build() { return new DescribePubUserListBySubUserResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribePubUserListBySubUserResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribePubUserListBySubUserResponseBody} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponseBody</p> */ public class DescribePubUserListBySubUserResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallStatus") private String callStatus; @com.aliyun.core.annotation.NameInMap("PubUserDetailList") private java.util.List<PubUserDetailList> pubUserDetailList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("SubUserDetail") private SubUserDetail subUserDetail; private DescribePubUserListBySubUserResponseBody(Builder builder) { this.callStatus = builder.callStatus; this.pubUserDetailList = builder.pubUserDetailList; this.requestId = builder.requestId; this.subUserDetail = builder.subUserDetail; } public static Builder builder() { return new Builder(); } public static DescribePubUserListBySubUserResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return callStatus */ public String getCallStatus() { return this.callStatus; } /** * @return pubUserDetailList */ public java.util.List<PubUserDetailList> getPubUserDetailList() { return this.pubUserDetailList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return subUserDetail */ public SubUserDetail getSubUserDetail() { return this.subUserDetail; } public static final class Builder { private String callStatus; private java.util.List<PubUserDetailList> pubUserDetailList; private String requestId; private SubUserDetail subUserDetail; private Builder() { } private Builder(DescribePubUserListBySubUserResponseBody model) { this.callStatus = model.callStatus; this.pubUserDetailList = model.pubUserDetailList; this.requestId = model.requestId; this.subUserDetail = model.subUserDetail; } /** * CallStatus. */ public Builder callStatus(String callStatus) { this.callStatus = callStatus; return this; } /** * PubUserDetailList. */ public Builder pubUserDetailList(java.util.List<PubUserDetailList> pubUserDetailList) { this.pubUserDetailList = pubUserDetailList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * SubUserDetail. */ public Builder subUserDetail(SubUserDetail subUserDetail) { this.subUserDetail = subUserDetail; return this; } public DescribePubUserListBySubUserResponseBody build() { return new DescribePubUserListBySubUserResponseBody(this); } } /** * * {@link DescribePubUserListBySubUserResponseBody} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponseBody</p> */ public static class OnlinePeriods extends TeaModel { @com.aliyun.core.annotation.NameInMap("JoinTs") private Long joinTs; @com.aliyun.core.annotation.NameInMap("LeaveTs") private Long leaveTs; private OnlinePeriods(Builder builder) { this.joinTs = builder.joinTs; this.leaveTs = builder.leaveTs; } public static Builder builder() { return new Builder(); } public static OnlinePeriods create() { return builder().build(); } /** * @return joinTs */ public Long getJoinTs() { return this.joinTs; } /** * @return leaveTs */ public Long getLeaveTs() { return this.leaveTs; } public static final class Builder { private Long joinTs; private Long leaveTs; private Builder() { } private Builder(OnlinePeriods model) { this.joinTs = model.joinTs; this.leaveTs = model.leaveTs; } /** * JoinTs. */ public Builder joinTs(Long joinTs) { this.joinTs = joinTs; return this; } /** * LeaveTs. */ public Builder leaveTs(Long leaveTs) { this.leaveTs = leaveTs; return this; } public OnlinePeriods build() { return new OnlinePeriods(this); } } } /** * * {@link DescribePubUserListBySubUserResponseBody} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponseBody</p> */ public static class PubUserDetailList extends TeaModel { @com.aliyun.core.annotation.NameInMap("CallIdList") private java.util.List<String> callIdList; @com.aliyun.core.annotation.NameInMap("ClientType") private String clientType; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("Location") private String location; @com.aliyun.core.annotation.NameInMap("Network") private String network; @com.aliyun.core.annotation.NameInMap("NetworkList") private java.util.List<String> networkList; @com.aliyun.core.annotation.NameInMap("OnlineDuration") private Long onlineDuration; @com.aliyun.core.annotation.NameInMap("OnlinePeriods") private java.util.List<OnlinePeriods> onlinePeriods; @com.aliyun.core.annotation.NameInMap("Os") private String os; @com.aliyun.core.annotation.NameInMap("OsList") private java.util.List<String> osList; @com.aliyun.core.annotation.NameInMap("Roles") private java.util.List<String> roles; @com.aliyun.core.annotation.NameInMap("SdkVersion") private String sdkVersion; @com.aliyun.core.annotation.NameInMap("SdkVersionList") private java.util.List<String> sdkVersionList; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; @com.aliyun.core.annotation.NameInMap("UserIdAlias") private String userIdAlias; private PubUserDetailList(Builder builder) { this.callIdList = builder.callIdList; this.clientType = builder.clientType; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; this.location = builder.location; this.network = builder.network; this.networkList = builder.networkList; this.onlineDuration = builder.onlineDuration; this.onlinePeriods = builder.onlinePeriods; this.os = builder.os; this.osList = builder.osList; this.roles = builder.roles; this.sdkVersion = builder.sdkVersion; this.sdkVersionList = builder.sdkVersionList; this.userId = builder.userId; this.userIdAlias = builder.userIdAlias; } public static Builder builder() { return new Builder(); } public static PubUserDetailList create() { return builder().build(); } /** * @return callIdList */ public java.util.List<String> getCallIdList() { return this.callIdList; } /** * @return clientType */ public String getClientType() { return this.clientType; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return location */ public String getLocation() { return this.location; } /** * @return network */ public String getNetwork() { return this.network; } /** * @return networkList */ public java.util.List<String> getNetworkList() { return this.networkList; } /** * @return onlineDuration */ public Long getOnlineDuration() { return this.onlineDuration; } /** * @return onlinePeriods */ public java.util.List<OnlinePeriods> getOnlinePeriods() { return this.onlinePeriods; } /** * @return os */ public String getOs() { return this.os; } /** * @return osList */ public java.util.List<String> getOsList() { return this.osList; } /** * @return roles */ public java.util.List<String> getRoles() { return this.roles; } /** * @return sdkVersion */ public String getSdkVersion() { return this.sdkVersion; } /** * @return sdkVersionList */ public java.util.List<String> getSdkVersionList() { return this.sdkVersionList; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return userIdAlias */ public String getUserIdAlias() { return this.userIdAlias; } public static final class Builder { private java.util.List<String> callIdList; private String clientType; private Long createdTs; private Long destroyedTs; private Long duration; private String location; private String network; private java.util.List<String> networkList; private Long onlineDuration; private java.util.List<OnlinePeriods> onlinePeriods; private String os; private java.util.List<String> osList; private java.util.List<String> roles; private String sdkVersion; private java.util.List<String> sdkVersionList; private String userId; private String userIdAlias; private Builder() { } private Builder(PubUserDetailList model) { this.callIdList = model.callIdList; this.clientType = model.clientType; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; this.location = model.location; this.network = model.network; this.networkList = model.networkList; this.onlineDuration = model.onlineDuration; this.onlinePeriods = model.onlinePeriods; this.os = model.os; this.osList = model.osList; this.roles = model.roles; this.sdkVersion = model.sdkVersion; this.sdkVersionList = model.sdkVersionList; this.userId = model.userId; this.userIdAlias = model.userIdAlias; } /** * CallIdList. */ public Builder callIdList(java.util.List<String> callIdList) { this.callIdList = callIdList; return this; } /** * ClientType. */ public Builder clientType(String clientType) { this.clientType = clientType; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * Location. */ public Builder location(String location) { this.location = location; return this; } /** * Network. */ public Builder network(String network) { this.network = network; return this; } /** * NetworkList. */ public Builder networkList(java.util.List<String> networkList) { this.networkList = networkList; return this; } /** * OnlineDuration. */ public Builder onlineDuration(Long onlineDuration) { this.onlineDuration = onlineDuration; return this; } /** * OnlinePeriods. */ public Builder onlinePeriods(java.util.List<OnlinePeriods> onlinePeriods) { this.onlinePeriods = onlinePeriods; return this; } /** * Os. */ public Builder os(String os) { this.os = os; return this; } /** * OsList. */ public Builder osList(java.util.List<String> osList) { this.osList = osList; return this; } /** * Roles. */ public Builder roles(java.util.List<String> roles) { this.roles = roles; return this; } /** * SdkVersion. */ public Builder sdkVersion(String sdkVersion) { this.sdkVersion = sdkVersion; return this; } /** * SdkVersionList. */ public Builder sdkVersionList(java.util.List<String> sdkVersionList) { this.sdkVersionList = sdkVersionList; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } /** * UserIdAlias. */ public Builder userIdAlias(String userIdAlias) { this.userIdAlias = userIdAlias; return this; } public PubUserDetailList build() { return new PubUserDetailList(this); } } } /** * * {@link DescribePubUserListBySubUserResponseBody} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponseBody</p> */ public static class SubUserDetailOnlinePeriods extends TeaModel { @com.aliyun.core.annotation.NameInMap("JoinTs") private Long joinTs; @com.aliyun.core.annotation.NameInMap("LeaveTs") private Long leaveTs; private SubUserDetailOnlinePeriods(Builder builder) { this.joinTs = builder.joinTs; this.leaveTs = builder.leaveTs; } public static Builder builder() { return new Builder(); } public static SubUserDetailOnlinePeriods create() { return builder().build(); } /** * @return joinTs */ public Long getJoinTs() { return this.joinTs; } /** * @return leaveTs */ public Long getLeaveTs() { return this.leaveTs; } public static final class Builder { private Long joinTs; private Long leaveTs; private Builder() { } private Builder(SubUserDetailOnlinePeriods model) { this.joinTs = model.joinTs; this.leaveTs = model.leaveTs; } /** * JoinTs. */ public Builder joinTs(Long joinTs) { this.joinTs = joinTs; return this; } /** * LeaveTs. */ public Builder leaveTs(Long leaveTs) { this.leaveTs = leaveTs; return this; } public SubUserDetailOnlinePeriods build() { return new SubUserDetailOnlinePeriods(this); } } } /** * * {@link DescribePubUserListBySubUserResponseBody} extends {@link TeaModel} * * <p>DescribePubUserListBySubUserResponseBody</p> */ public static class SubUserDetail extends TeaModel { @com.aliyun.core.annotation.NameInMap("ClientType") private String clientType; @com.aliyun.core.annotation.NameInMap("CreatedTs") private Long createdTs; @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.NameInMap("Duration") private Long duration; @com.aliyun.core.annotation.NameInMap("Location") private String location; @com.aliyun.core.annotation.NameInMap("Network") private String network; @com.aliyun.core.annotation.NameInMap("NetworkList") private java.util.List<String> networkList; @com.aliyun.core.annotation.NameInMap("OnlineDuration") private Long onlineDuration; @com.aliyun.core.annotation.NameInMap("OnlinePeriods") private java.util.List<SubUserDetailOnlinePeriods> onlinePeriods; @com.aliyun.core.annotation.NameInMap("Os") private String os; @com.aliyun.core.annotation.NameInMap("OsList") private java.util.List<String> osList; @com.aliyun.core.annotation.NameInMap("Roles") private java.util.List<String> roles; @com.aliyun.core.annotation.NameInMap("SdkVersion") private String sdkVersion; @com.aliyun.core.annotation.NameInMap("SdkVersionList") private java.util.List<String> sdkVersionList; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; @com.aliyun.core.annotation.NameInMap("UserIdAlias") private String userIdAlias; private SubUserDetail(Builder builder) { this.clientType = builder.clientType; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.duration = builder.duration; this.location = builder.location; this.network = builder.network; this.networkList = builder.networkList; this.onlineDuration = builder.onlineDuration; this.onlinePeriods = builder.onlinePeriods; this.os = builder.os; this.osList = builder.osList; this.roles = builder.roles; this.sdkVersion = builder.sdkVersion; this.sdkVersionList = builder.sdkVersionList; this.userId = builder.userId; this.userIdAlias = builder.userIdAlias; } public static Builder builder() { return new Builder(); } public static SubUserDetail create() { return builder().build(); } /** * @return clientType */ public String getClientType() { return this.clientType; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return duration */ public Long getDuration() { return this.duration; } /** * @return location */ public String getLocation() { return this.location; } /** * @return network */ public String getNetwork() { return this.network; } /** * @return networkList */ public java.util.List<String> getNetworkList() { return this.networkList; } /** * @return onlineDuration */ public Long getOnlineDuration() { return this.onlineDuration; } /** * @return onlinePeriods */ public java.util.List<SubUserDetailOnlinePeriods> getOnlinePeriods() { return this.onlinePeriods; } /** * @return os */ public String getOs() { return this.os; } /** * @return osList */ public java.util.List<String> getOsList() { return this.osList; } /** * @return roles */ public java.util.List<String> getRoles() { return this.roles; } /** * @return sdkVersion */ public String getSdkVersion() { return this.sdkVersion; } /** * @return sdkVersionList */ public java.util.List<String> getSdkVersionList() { return this.sdkVersionList; } /** * @return userId */ public String getUserId() { return this.userId; } /** * @return userIdAlias */ public String getUserIdAlias() { return this.userIdAlias; } public static final class Builder { private String clientType; private Long createdTs; private Long destroyedTs; private Long duration; private String location; private String network; private java.util.List<String> networkList; private Long onlineDuration; private java.util.List<SubUserDetailOnlinePeriods> onlinePeriods; private String os; private java.util.List<String> osList; private java.util.List<String> roles; private String sdkVersion; private java.util.List<String> sdkVersionList; private String userId; private String userIdAlias; private Builder() { } private Builder(SubUserDetail model) { this.clientType = model.clientType; this.createdTs = model.createdTs; this.destroyedTs = model.destroyedTs; this.duration = model.duration; this.location = model.location; this.network = model.network; this.networkList = model.networkList; this.onlineDuration = model.onlineDuration; this.onlinePeriods = model.onlinePeriods; this.os = model.os; this.osList = model.osList; this.roles = model.roles; this.sdkVersion = model.sdkVersion; this.sdkVersionList = model.sdkVersionList; this.userId = model.userId; this.userIdAlias = model.userIdAlias; } /** * ClientType. */ public Builder clientType(String clientType) { this.clientType = clientType; return this; } /** * CreatedTs. */ public Builder createdTs(Long createdTs) { this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.destroyedTs = destroyedTs; return this; } /** * Duration. */ public Builder duration(Long duration) { this.duration = duration; return this; } /** * Location. */ public Builder location(String location) { this.location = location; return this; } /** * Network. */ public Builder network(String network) { this.network = network; return this; } /** * NetworkList. */ public Builder networkList(java.util.List<String> networkList) { this.networkList = networkList; return this; } /** * OnlineDuration. */ public Builder onlineDuration(Long onlineDuration) { this.onlineDuration = onlineDuration; return this; } /** * OnlinePeriods. */ public Builder onlinePeriods(java.util.List<SubUserDetailOnlinePeriods> onlinePeriods) { this.onlinePeriods = onlinePeriods; return this; } /** * Os. */ public Builder os(String os) { this.os = os; return this; } /** * OsList. */ public Builder osList(java.util.List<String> osList) { this.osList = osList; return this; } /** * Roles. */ public Builder roles(java.util.List<String> roles) { this.roles = roles; return this; } /** * SdkVersion. */ public Builder sdkVersion(String sdkVersion) { this.sdkVersion = sdkVersion; return this; } /** * SdkVersionList. */ public Builder sdkVersionList(java.util.List<String> sdkVersionList) { this.sdkVersionList = sdkVersionList; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } /** * UserIdAlias. */ public Builder userIdAlias(String userIdAlias) { this.userIdAlias = userIdAlias; return this; } public SubUserDetail build() { return new SubUserDetail(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQoeMetricDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQoeMetricDataRequest} extends {@link RequestModel} * * <p>DescribeQoeMetricDataRequest</p> */ public class DescribeQoeMetricDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ChannelId") @com.aliyun.core.annotation.Validation(required = true) private String channelId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("CreatedTs") @com.aliyun.core.annotation.Validation(required = true) private Long createdTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("DestroyedTs") private Long destroyedTs; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("UserId") @com.aliyun.core.annotation.Validation(required = true) private String userId; private DescribeQoeMetricDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.channelId = builder.channelId; this.createdTs = builder.createdTs; this.destroyedTs = builder.destroyedTs; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static DescribeQoeMetricDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return channelId */ public String getChannelId() { return this.channelId; } /** * @return createdTs */ public Long getCreatedTs() { return this.createdTs; } /** * @return destroyedTs */ public Long getDestroyedTs() { return this.destroyedTs; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder extends Request.Builder<DescribeQoeMetricDataRequest, Builder> { private String appId; private String channelId; private Long createdTs; private Long destroyedTs; private String userId; private Builder() { super(); } private Builder(DescribeQoeMetricDataRequest request) { super(request); this.appId = request.appId; this.channelId = request.channelId; this.createdTs = request.createdTs; this.destroyedTs = request.destroyedTs; this.userId = request.userId; } /** * <p>APP ID。</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testappid</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testid</p> */ public Builder channelId(String channelId) { this.putQueryParameter("ChannelId", channelId); this.channelId = channelId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1614936817</p> */ public Builder createdTs(Long createdTs) { this.putQueryParameter("CreatedTs", createdTs); this.createdTs = createdTs; return this; } /** * DestroyedTs. */ public Builder destroyedTs(Long destroyedTs) { this.putQueryParameter("DestroyedTs", destroyedTs); this.destroyedTs = destroyedTs; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testuserid</p> */ public Builder userId(String userId) { this.putQueryParameter("UserId", userId); this.userId = userId; return this; } @Override public DescribeQoeMetricDataRequest build() { return new DescribeQoeMetricDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQoeMetricDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQoeMetricDataResponse} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponse</p> */ public class DescribeQoeMetricDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeQoeMetricDataResponseBody body; private DescribeQoeMetricDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeQoeMetricDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeQoeMetricDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeQoeMetricDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeQoeMetricDataResponseBody body); @Override DescribeQoeMetricDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeQoeMetricDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeQoeMetricDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeQoeMetricDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeQoeMetricDataResponseBody body) { this.body = body; return this; } @Override public DescribeQoeMetricDataResponse build() { return new DescribeQoeMetricDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQoeMetricDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQoeMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponseBody</p> */ public class DescribeQoeMetricDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("AudioData") private java.util.List<AudioData> audioData; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; @com.aliyun.core.annotation.NameInMap("VideoData") private java.util.List<VideoData> videoData; private DescribeQoeMetricDataResponseBody(Builder builder) { this.audioData = builder.audioData; this.requestId = builder.requestId; this.videoData = builder.videoData; } public static Builder builder() { return new Builder(); } public static DescribeQoeMetricDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return audioData */ public java.util.List<AudioData> getAudioData() { return this.audioData; } /** * @return requestId */ public String getRequestId() { return this.requestId; } /** * @return videoData */ public java.util.List<VideoData> getVideoData() { return this.videoData; } public static final class Builder { private java.util.List<AudioData> audioData; private String requestId; private java.util.List<VideoData> videoData; private Builder() { } private Builder(DescribeQoeMetricDataResponseBody model) { this.audioData = model.audioData; this.requestId = model.requestId; this.videoData = model.videoData; } /** * AudioData. */ public Builder audioData(java.util.List<AudioData> audioData) { this.audioData = audioData; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } /** * VideoData. */ public Builder videoData(java.util.List<VideoData> videoData) { this.videoData = videoData; return this; } public DescribeQoeMetricDataResponseBody build() { return new DescribeQoeMetricDataResponseBody(this); } } /** * * {@link DescribeQoeMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponseBody</p> */ public static class Nodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private Nodes(Builder builder) { this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static Nodes create() { return builder().build(); } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private String x; private String y; private Builder() { } private Builder(Nodes model) { this.x = model.x; this.y = model.y; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public Nodes build() { return new Nodes(this); } } } /** * * {@link DescribeQoeMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponseBody</p> */ public static class AudioData extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<Nodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private AudioData(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static AudioData create() { return builder().build(); } /** * @return nodes */ public java.util.List<Nodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<Nodes> nodes; private String type; private String userId; private Builder() { } private Builder(AudioData model) { this.nodes = model.nodes; this.type = model.type; this.userId = model.userId; } /** * Nodes. */ public Builder nodes(java.util.List<Nodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public AudioData build() { return new AudioData(this); } } } /** * * {@link DescribeQoeMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponseBody</p> */ public static class VideoDataNodes extends TeaModel { @com.aliyun.core.annotation.NameInMap("X") private String x; @com.aliyun.core.annotation.NameInMap("Y") private String y; private VideoDataNodes(Builder builder) { this.x = builder.x; this.y = builder.y; } public static Builder builder() { return new Builder(); } public static VideoDataNodes create() { return builder().build(); } /** * @return x */ public String getX() { return this.x; } /** * @return y */ public String getY() { return this.y; } public static final class Builder { private String x; private String y; private Builder() { } private Builder(VideoDataNodes model) { this.x = model.x; this.y = model.y; } /** * X. */ public Builder x(String x) { this.x = x; return this; } /** * Y. */ public Builder y(String y) { this.y = y; return this; } public VideoDataNodes build() { return new VideoDataNodes(this); } } } /** * * {@link DescribeQoeMetricDataResponseBody} extends {@link TeaModel} * * <p>DescribeQoeMetricDataResponseBody</p> */ public static class VideoData extends TeaModel { @com.aliyun.core.annotation.NameInMap("Nodes") private java.util.List<VideoDataNodes> nodes; @com.aliyun.core.annotation.NameInMap("Type") private String type; @com.aliyun.core.annotation.NameInMap("UserId") private String userId; private VideoData(Builder builder) { this.nodes = builder.nodes; this.type = builder.type; this.userId = builder.userId; } public static Builder builder() { return new Builder(); } public static VideoData create() { return builder().build(); } /** * @return nodes */ public java.util.List<VideoDataNodes> getNodes() { return this.nodes; } /** * @return type */ public String getType() { return this.type; } /** * @return userId */ public String getUserId() { return this.userId; } public static final class Builder { private java.util.List<VideoDataNodes> nodes; private String type; private String userId; private Builder() { } private Builder(VideoData model) { this.nodes = model.nodes; this.type = model.type; this.userId = model.userId; } /** * Nodes. */ public Builder nodes(java.util.List<VideoDataNodes> nodes) { this.nodes = nodes; return this; } /** * Type. */ public Builder type(String type) { this.type = type; return this; } /** * UserId. */ public Builder userId(String userId) { this.userId = userId; return this; } public VideoData build() { return new VideoData(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityAreaDistributionStatDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityAreaDistributionStatDataRequest} extends {@link RequestModel} * * <p>DescribeQualityAreaDistributionStatDataRequest</p> */ public class DescribeQualityAreaDistributionStatDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndDate") @com.aliyun.core.annotation.Validation(required = true) private Long endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("ParentArea") private String parentArea; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartDate") @com.aliyun.core.annotation.Validation(required = true) private Long startDate; private DescribeQualityAreaDistributionStatDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endDate = builder.endDate; this.parentArea = builder.parentArea; this.startDate = builder.startDate; } public static Builder builder() { return new Builder(); } public static DescribeQualityAreaDistributionStatDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endDate */ public Long getEndDate() { return this.endDate; } /** * @return parentArea */ public String getParentArea() { return this.parentArea; } /** * @return startDate */ public Long getStartDate() { return this.startDate; } public static final class Builder extends Request.Builder<DescribeQualityAreaDistributionStatDataRequest, Builder> { private String appId; private Long endDate; private String parentArea; private Long startDate; private Builder() { super(); } private Builder(DescribeQualityAreaDistributionStatDataRequest request) { super(request); this.appId = request.appId; this.endDate = request.endDate; this.parentArea = request.parentArea; this.startDate = request.startDate; } /** * <p>APP ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615910399</p> */ public Builder endDate(Long endDate) { this.putQueryParameter("EndDate", endDate); this.endDate = endDate; return this; } /** * ParentArea. */ public Builder parentArea(String parentArea) { this.putQueryParameter("ParentArea", parentArea); this.parentArea = parentArea; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615824000</p> */ public Builder startDate(Long startDate) { this.putQueryParameter("StartDate", startDate); this.startDate = startDate; return this; } @Override public DescribeQualityAreaDistributionStatDataRequest build() { return new DescribeQualityAreaDistributionStatDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityAreaDistributionStatDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityAreaDistributionStatDataResponse} extends {@link TeaModel} * * <p>DescribeQualityAreaDistributionStatDataResponse</p> */ public class DescribeQualityAreaDistributionStatDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeQualityAreaDistributionStatDataResponseBody body; private DescribeQualityAreaDistributionStatDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeQualityAreaDistributionStatDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeQualityAreaDistributionStatDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeQualityAreaDistributionStatDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeQualityAreaDistributionStatDataResponseBody body); @Override DescribeQualityAreaDistributionStatDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeQualityAreaDistributionStatDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeQualityAreaDistributionStatDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeQualityAreaDistributionStatDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeQualityAreaDistributionStatDataResponseBody body) { this.body = body; return this; } @Override public DescribeQualityAreaDistributionStatDataResponse build() { return new DescribeQualityAreaDistributionStatDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityAreaDistributionStatDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityAreaDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityAreaDistributionStatDataResponseBody</p> */ public class DescribeQualityAreaDistributionStatDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("QualityStatDataList") private java.util.List<QualityStatDataList> qualityStatDataList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeQualityAreaDistributionStatDataResponseBody(Builder builder) { this.qualityStatDataList = builder.qualityStatDataList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeQualityAreaDistributionStatDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return qualityStatDataList */ public java.util.List<QualityStatDataList> getQualityStatDataList() { return this.qualityStatDataList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<QualityStatDataList> qualityStatDataList; private String requestId; private Builder() { } private Builder(DescribeQualityAreaDistributionStatDataResponseBody model) { this.qualityStatDataList = model.qualityStatDataList; this.requestId = model.requestId; } /** * QualityStatDataList. */ public Builder qualityStatDataList(java.util.List<QualityStatDataList> qualityStatDataList) { this.qualityStatDataList = qualityStatDataList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeQualityAreaDistributionStatDataResponseBody build() { return new DescribeQualityAreaDistributionStatDataResponseBody(this); } } /** * * {@link DescribeQualityAreaDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityAreaDistributionStatDataResponseBody</p> */ public static class QualityStatDataList extends TeaModel { @com.aliyun.core.annotation.NameInMap("AudioDelay") private Long audioDelay; @com.aliyun.core.annotation.NameInMap("AudioHighQualityTransmissionRate") private String audioHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("AudioStuckRate") private String audioStuckRate; @com.aliyun.core.annotation.NameInMap("CallDurationRatio") private String callDurationRatio; @com.aliyun.core.annotation.NameInMap("JoinChannelSucFiveSecRate") private String joinChannelSucFiveSecRate; @com.aliyun.core.annotation.NameInMap("JoinChannelSucRate") private String joinChannelSucRate; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("VideoDelay") private Long videoDelay; @com.aliyun.core.annotation.NameInMap("VideoFirstPicDuration") private Long videoFirstPicDuration; @com.aliyun.core.annotation.NameInMap("VideoHighQualityTransmissionRate") private String videoHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("VideoStuckRate") private String videoStuckRate; private QualityStatDataList(Builder builder) { this.audioDelay = builder.audioDelay; this.audioHighQualityTransmissionRate = builder.audioHighQualityTransmissionRate; this.audioStuckRate = builder.audioStuckRate; this.callDurationRatio = builder.callDurationRatio; this.joinChannelSucFiveSecRate = builder.joinChannelSucFiveSecRate; this.joinChannelSucRate = builder.joinChannelSucRate; this.name = builder.name; this.videoDelay = builder.videoDelay; this.videoFirstPicDuration = builder.videoFirstPicDuration; this.videoHighQualityTransmissionRate = builder.videoHighQualityTransmissionRate; this.videoStuckRate = builder.videoStuckRate; } public static Builder builder() { return new Builder(); } public static QualityStatDataList create() { return builder().build(); } /** * @return audioDelay */ public Long getAudioDelay() { return this.audioDelay; } /** * @return audioHighQualityTransmissionRate */ public String getAudioHighQualityTransmissionRate() { return this.audioHighQualityTransmissionRate; } /** * @return audioStuckRate */ public String getAudioStuckRate() { return this.audioStuckRate; } /** * @return callDurationRatio */ public String getCallDurationRatio() { return this.callDurationRatio; } /** * @return joinChannelSucFiveSecRate */ public String getJoinChannelSucFiveSecRate() { return this.joinChannelSucFiveSecRate; } /** * @return joinChannelSucRate */ public String getJoinChannelSucRate() { return this.joinChannelSucRate; } /** * @return name */ public String getName() { return this.name; } /** * @return videoDelay */ public Long getVideoDelay() { return this.videoDelay; } /** * @return videoFirstPicDuration */ public Long getVideoFirstPicDuration() { return this.videoFirstPicDuration; } /** * @return videoHighQualityTransmissionRate */ public String getVideoHighQualityTransmissionRate() { return this.videoHighQualityTransmissionRate; } /** * @return videoStuckRate */ public String getVideoStuckRate() { return this.videoStuckRate; } public static final class Builder { private Long audioDelay; private String audioHighQualityTransmissionRate; private String audioStuckRate; private String callDurationRatio; private String joinChannelSucFiveSecRate; private String joinChannelSucRate; private String name; private Long videoDelay; private Long videoFirstPicDuration; private String videoHighQualityTransmissionRate; private String videoStuckRate; private Builder() { } private Builder(QualityStatDataList model) { this.audioDelay = model.audioDelay; this.audioHighQualityTransmissionRate = model.audioHighQualityTransmissionRate; this.audioStuckRate = model.audioStuckRate; this.callDurationRatio = model.callDurationRatio; this.joinChannelSucFiveSecRate = model.joinChannelSucFiveSecRate; this.joinChannelSucRate = model.joinChannelSucRate; this.name = model.name; this.videoDelay = model.videoDelay; this.videoFirstPicDuration = model.videoFirstPicDuration; this.videoHighQualityTransmissionRate = model.videoHighQualityTransmissionRate; this.videoStuckRate = model.videoStuckRate; } /** * AudioDelay. */ public Builder audioDelay(Long audioDelay) { this.audioDelay = audioDelay; return this; } /** * AudioHighQualityTransmissionRate. */ public Builder audioHighQualityTransmissionRate(String audioHighQualityTransmissionRate) { this.audioHighQualityTransmissionRate = audioHighQualityTransmissionRate; return this; } /** * AudioStuckRate. */ public Builder audioStuckRate(String audioStuckRate) { this.audioStuckRate = audioStuckRate; return this; } /** * CallDurationRatio. */ public Builder callDurationRatio(String callDurationRatio) { this.callDurationRatio = callDurationRatio; return this; } /** * JoinChannelSucFiveSecRate. */ public Builder joinChannelSucFiveSecRate(String joinChannelSucFiveSecRate) { this.joinChannelSucFiveSecRate = joinChannelSucFiveSecRate; return this; } /** * JoinChannelSucRate. */ public Builder joinChannelSucRate(String joinChannelSucRate) { this.joinChannelSucRate = joinChannelSucRate; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * VideoDelay. */ public Builder videoDelay(Long videoDelay) { this.videoDelay = videoDelay; return this; } /** * VideoFirstPicDuration. */ public Builder videoFirstPicDuration(Long videoFirstPicDuration) { this.videoFirstPicDuration = videoFirstPicDuration; return this; } /** * VideoHighQualityTransmissionRate. */ public Builder videoHighQualityTransmissionRate(String videoHighQualityTransmissionRate) { this.videoHighQualityTransmissionRate = videoHighQualityTransmissionRate; return this; } /** * VideoStuckRate. */ public Builder videoStuckRate(String videoStuckRate) { this.videoStuckRate = videoStuckRate; return this; } public QualityStatDataList build() { return new QualityStatDataList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityDistributionStatDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityDistributionStatDataRequest} extends {@link RequestModel} * * <p>DescribeQualityDistributionStatDataRequest</p> */ public class DescribeQualityDistributionStatDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndDate") @com.aliyun.core.annotation.Validation(required = true) private Long endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartDate") @com.aliyun.core.annotation.Validation(required = true) private Long startDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StatDim") @com.aliyun.core.annotation.Validation(required = true) private String statDim; private DescribeQualityDistributionStatDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endDate = builder.endDate; this.startDate = builder.startDate; this.statDim = builder.statDim; } public static Builder builder() { return new Builder(); } public static DescribeQualityDistributionStatDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endDate */ public Long getEndDate() { return this.endDate; } /** * @return startDate */ public Long getStartDate() { return this.startDate; } /** * @return statDim */ public String getStatDim() { return this.statDim; } public static final class Builder extends Request.Builder<DescribeQualityDistributionStatDataRequest, Builder> { private String appId; private Long endDate; private Long startDate; private String statDim; private Builder() { super(); } private Builder(DescribeQualityDistributionStatDataRequest request) { super(request); this.appId = request.appId; this.endDate = request.endDate; this.startDate = request.startDate; this.statDim = request.statDim; } /** * <p>APP ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615910399</p> */ public Builder endDate(Long endDate) { this.putQueryParameter("EndDate", endDate); this.endDate = endDate; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615824000</p> */ public Builder startDate(Long startDate) { this.putQueryParameter("StartDate", startDate); this.startDate = startDate; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>CHANNEL_ONLINE</p> */ public Builder statDim(String statDim) { this.putQueryParameter("StatDim", statDim); this.statDim = statDim; return this; } @Override public DescribeQualityDistributionStatDataRequest build() { return new DescribeQualityDistributionStatDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityDistributionStatDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityDistributionStatDataResponse} extends {@link TeaModel} * * <p>DescribeQualityDistributionStatDataResponse</p> */ public class DescribeQualityDistributionStatDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeQualityDistributionStatDataResponseBody body; private DescribeQualityDistributionStatDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeQualityDistributionStatDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeQualityDistributionStatDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeQualityDistributionStatDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeQualityDistributionStatDataResponseBody body); @Override DescribeQualityDistributionStatDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeQualityDistributionStatDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeQualityDistributionStatDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeQualityDistributionStatDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeQualityDistributionStatDataResponseBody body) { this.body = body; return this; } @Override public DescribeQualityDistributionStatDataResponse build() { return new DescribeQualityDistributionStatDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityDistributionStatDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityDistributionStatDataResponseBody</p> */ public class DescribeQualityDistributionStatDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("QualityStatDataList") private java.util.List<QualityStatDataList> qualityStatDataList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeQualityDistributionStatDataResponseBody(Builder builder) { this.qualityStatDataList = builder.qualityStatDataList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeQualityDistributionStatDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return qualityStatDataList */ public java.util.List<QualityStatDataList> getQualityStatDataList() { return this.qualityStatDataList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<QualityStatDataList> qualityStatDataList; private String requestId; private Builder() { } private Builder(DescribeQualityDistributionStatDataResponseBody model) { this.qualityStatDataList = model.qualityStatDataList; this.requestId = model.requestId; } /** * QualityStatDataList. */ public Builder qualityStatDataList(java.util.List<QualityStatDataList> qualityStatDataList) { this.qualityStatDataList = qualityStatDataList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeQualityDistributionStatDataResponseBody build() { return new DescribeQualityDistributionStatDataResponseBody(this); } } /** * * {@link DescribeQualityDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityDistributionStatDataResponseBody</p> */ public static class QualityStatDataList extends TeaModel { @com.aliyun.core.annotation.NameInMap("AudioDelay") private Long audioDelay; @com.aliyun.core.annotation.NameInMap("AudioHighQualityTransmissionRate") private String audioHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("AudioStuckRate") private String audioStuckRate; @com.aliyun.core.annotation.NameInMap("CallDurationRatio") private String callDurationRatio; @com.aliyun.core.annotation.NameInMap("JoinChannelSucFiveSecRate") private String joinChannelSucFiveSecRate; @com.aliyun.core.annotation.NameInMap("JoinChannelSucRate") private String joinChannelSucRate; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("VideoDelay") private Long videoDelay; @com.aliyun.core.annotation.NameInMap("VideoFirstPicDuration") private Long videoFirstPicDuration; @com.aliyun.core.annotation.NameInMap("VideoHighQualityTransmissionRate") private String videoHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("VideoStuckRate") private String videoStuckRate; private QualityStatDataList(Builder builder) { this.audioDelay = builder.audioDelay; this.audioHighQualityTransmissionRate = builder.audioHighQualityTransmissionRate; this.audioStuckRate = builder.audioStuckRate; this.callDurationRatio = builder.callDurationRatio; this.joinChannelSucFiveSecRate = builder.joinChannelSucFiveSecRate; this.joinChannelSucRate = builder.joinChannelSucRate; this.name = builder.name; this.videoDelay = builder.videoDelay; this.videoFirstPicDuration = builder.videoFirstPicDuration; this.videoHighQualityTransmissionRate = builder.videoHighQualityTransmissionRate; this.videoStuckRate = builder.videoStuckRate; } public static Builder builder() { return new Builder(); } public static QualityStatDataList create() { return builder().build(); } /** * @return audioDelay */ public Long getAudioDelay() { return this.audioDelay; } /** * @return audioHighQualityTransmissionRate */ public String getAudioHighQualityTransmissionRate() { return this.audioHighQualityTransmissionRate; } /** * @return audioStuckRate */ public String getAudioStuckRate() { return this.audioStuckRate; } /** * @return callDurationRatio */ public String getCallDurationRatio() { return this.callDurationRatio; } /** * @return joinChannelSucFiveSecRate */ public String getJoinChannelSucFiveSecRate() { return this.joinChannelSucFiveSecRate; } /** * @return joinChannelSucRate */ public String getJoinChannelSucRate() { return this.joinChannelSucRate; } /** * @return name */ public String getName() { return this.name; } /** * @return videoDelay */ public Long getVideoDelay() { return this.videoDelay; } /** * @return videoFirstPicDuration */ public Long getVideoFirstPicDuration() { return this.videoFirstPicDuration; } /** * @return videoHighQualityTransmissionRate */ public String getVideoHighQualityTransmissionRate() { return this.videoHighQualityTransmissionRate; } /** * @return videoStuckRate */ public String getVideoStuckRate() { return this.videoStuckRate; } public static final class Builder { private Long audioDelay; private String audioHighQualityTransmissionRate; private String audioStuckRate; private String callDurationRatio; private String joinChannelSucFiveSecRate; private String joinChannelSucRate; private String name; private Long videoDelay; private Long videoFirstPicDuration; private String videoHighQualityTransmissionRate; private String videoStuckRate; private Builder() { } private Builder(QualityStatDataList model) { this.audioDelay = model.audioDelay; this.audioHighQualityTransmissionRate = model.audioHighQualityTransmissionRate; this.audioStuckRate = model.audioStuckRate; this.callDurationRatio = model.callDurationRatio; this.joinChannelSucFiveSecRate = model.joinChannelSucFiveSecRate; this.joinChannelSucRate = model.joinChannelSucRate; this.name = model.name; this.videoDelay = model.videoDelay; this.videoFirstPicDuration = model.videoFirstPicDuration; this.videoHighQualityTransmissionRate = model.videoHighQualityTransmissionRate; this.videoStuckRate = model.videoStuckRate; } /** * AudioDelay. */ public Builder audioDelay(Long audioDelay) { this.audioDelay = audioDelay; return this; } /** * AudioHighQualityTransmissionRate. */ public Builder audioHighQualityTransmissionRate(String audioHighQualityTransmissionRate) { this.audioHighQualityTransmissionRate = audioHighQualityTransmissionRate; return this; } /** * AudioStuckRate. */ public Builder audioStuckRate(String audioStuckRate) { this.audioStuckRate = audioStuckRate; return this; } /** * CallDurationRatio. */ public Builder callDurationRatio(String callDurationRatio) { this.callDurationRatio = callDurationRatio; return this; } /** * JoinChannelSucFiveSecRate. */ public Builder joinChannelSucFiveSecRate(String joinChannelSucFiveSecRate) { this.joinChannelSucFiveSecRate = joinChannelSucFiveSecRate; return this; } /** * JoinChannelSucRate. */ public Builder joinChannelSucRate(String joinChannelSucRate) { this.joinChannelSucRate = joinChannelSucRate; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * VideoDelay. */ public Builder videoDelay(Long videoDelay) { this.videoDelay = videoDelay; return this; } /** * VideoFirstPicDuration. */ public Builder videoFirstPicDuration(Long videoFirstPicDuration) { this.videoFirstPicDuration = videoFirstPicDuration; return this; } /** * VideoHighQualityTransmissionRate. */ public Builder videoHighQualityTransmissionRate(String videoHighQualityTransmissionRate) { this.videoHighQualityTransmissionRate = videoHighQualityTransmissionRate; return this; } /** * VideoStuckRate. */ public Builder videoStuckRate(String videoStuckRate) { this.videoStuckRate = videoStuckRate; return this; } public QualityStatDataList build() { return new QualityStatDataList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityOsSdkVersionDistributionStatDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityOsSdkVersionDistributionStatDataRequest} extends {@link RequestModel} * * <p>DescribeQualityOsSdkVersionDistributionStatDataRequest</p> */ public class DescribeQualityOsSdkVersionDistributionStatDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndDate") @com.aliyun.core.annotation.Validation(required = true) private Long endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartDate") @com.aliyun.core.annotation.Validation(required = true) private Long startDate; private DescribeQualityOsSdkVersionDistributionStatDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endDate = builder.endDate; this.startDate = builder.startDate; } public static Builder builder() { return new Builder(); } public static DescribeQualityOsSdkVersionDistributionStatDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endDate */ public Long getEndDate() { return this.endDate; } /** * @return startDate */ public Long getStartDate() { return this.startDate; } public static final class Builder extends Request.Builder<DescribeQualityOsSdkVersionDistributionStatDataRequest, Builder> { private String appId; private Long endDate; private Long startDate; private Builder() { super(); } private Builder(DescribeQualityOsSdkVersionDistributionStatDataRequest request) { super(request); this.appId = request.appId; this.endDate = request.endDate; this.startDate = request.startDate; } /** * <p>APP ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615910399</p> */ public Builder endDate(Long endDate) { this.putQueryParameter("EndDate", endDate); this.endDate = endDate; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615824000</p> */ public Builder startDate(Long startDate) { this.putQueryParameter("StartDate", startDate); this.startDate = startDate; return this; } @Override public DescribeQualityOsSdkVersionDistributionStatDataRequest build() { return new DescribeQualityOsSdkVersionDistributionStatDataRequest(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityOsSdkVersionDistributionStatDataResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityOsSdkVersionDistributionStatDataResponse} extends {@link TeaModel} * * <p>DescribeQualityOsSdkVersionDistributionStatDataResponse</p> */ public class DescribeQualityOsSdkVersionDistributionStatDataResponse extends Response { @com.aliyun.core.annotation.NameInMap("headers") private java.util.Map<String, String> headers; @com.aliyun.core.annotation.NameInMap("statusCode") private Integer statusCode; @com.aliyun.core.annotation.NameInMap("body") private DescribeQualityOsSdkVersionDistributionStatDataResponseBody body; private DescribeQualityOsSdkVersionDistributionStatDataResponse(BuilderImpl builder) { super(builder); this.headers = builder.headers; this.statusCode = builder.statusCode; this.body = builder.body; } public static DescribeQualityOsSdkVersionDistributionStatDataResponse create() { return new BuilderImpl().build(); } @Override public Builder toBuilder() { return new BuilderImpl(this); } /** * @return headers */ public java.util.Map<String, String> getHeaders() { return this.headers; } /** * @return statusCode */ public Integer getStatusCode() { return this.statusCode; } /** * @return body */ public DescribeQualityOsSdkVersionDistributionStatDataResponseBody getBody() { return this.body; } public interface Builder extends Response.Builder<DescribeQualityOsSdkVersionDistributionStatDataResponse, Builder> { Builder headers(java.util.Map<String, String> headers); Builder statusCode(Integer statusCode); Builder body(DescribeQualityOsSdkVersionDistributionStatDataResponseBody body); @Override DescribeQualityOsSdkVersionDistributionStatDataResponse build(); } private static final class BuilderImpl extends Response.BuilderImpl<DescribeQualityOsSdkVersionDistributionStatDataResponse, Builder> implements Builder { private java.util.Map<String, String> headers; private Integer statusCode; private DescribeQualityOsSdkVersionDistributionStatDataResponseBody body; private BuilderImpl() { super(); } private BuilderImpl(DescribeQualityOsSdkVersionDistributionStatDataResponse response) { super(response); this.headers = response.headers; this.statusCode = response.statusCode; this.body = response.body; } /** * headers. */ @Override public Builder headers(java.util.Map<String, String> headers) { this.headers = headers; return this; } /** * statusCode. */ @Override public Builder statusCode(Integer statusCode) { this.statusCode = statusCode; return this; } /** * body. */ @Override public Builder body(DescribeQualityOsSdkVersionDistributionStatDataResponseBody body) { this.body = body; return this; } @Override public DescribeQualityOsSdkVersionDistributionStatDataResponse build() { return new DescribeQualityOsSdkVersionDistributionStatDataResponse(this); } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityOsSdkVersionDistributionStatDataResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityOsSdkVersionDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityOsSdkVersionDistributionStatDataResponseBody</p> */ public class DescribeQualityOsSdkVersionDistributionStatDataResponseBody extends TeaModel { @com.aliyun.core.annotation.NameInMap("QualityOsSdkVersionStatDataList") private java.util.List<QualityOsSdkVersionStatDataList> qualityOsSdkVersionStatDataList; @com.aliyun.core.annotation.NameInMap("RequestId") private String requestId; private DescribeQualityOsSdkVersionDistributionStatDataResponseBody(Builder builder) { this.qualityOsSdkVersionStatDataList = builder.qualityOsSdkVersionStatDataList; this.requestId = builder.requestId; } public static Builder builder() { return new Builder(); } public static DescribeQualityOsSdkVersionDistributionStatDataResponseBody create() { return builder().build(); } public Builder toBuilder() { return new Builder(this); } /** * @return qualityOsSdkVersionStatDataList */ public java.util.List<QualityOsSdkVersionStatDataList> getQualityOsSdkVersionStatDataList() { return this.qualityOsSdkVersionStatDataList; } /** * @return requestId */ public String getRequestId() { return this.requestId; } public static final class Builder { private java.util.List<QualityOsSdkVersionStatDataList> qualityOsSdkVersionStatDataList; private String requestId; private Builder() { } private Builder(DescribeQualityOsSdkVersionDistributionStatDataResponseBody model) { this.qualityOsSdkVersionStatDataList = model.qualityOsSdkVersionStatDataList; this.requestId = model.requestId; } /** * QualityOsSdkVersionStatDataList. */ public Builder qualityOsSdkVersionStatDataList(java.util.List<QualityOsSdkVersionStatDataList> qualityOsSdkVersionStatDataList) { this.qualityOsSdkVersionStatDataList = qualityOsSdkVersionStatDataList; return this; } /** * RequestId. */ public Builder requestId(String requestId) { this.requestId = requestId; return this; } public DescribeQualityOsSdkVersionDistributionStatDataResponseBody build() { return new DescribeQualityOsSdkVersionDistributionStatDataResponseBody(this); } } /** * * {@link DescribeQualityOsSdkVersionDistributionStatDataResponseBody} extends {@link TeaModel} * * <p>DescribeQualityOsSdkVersionDistributionStatDataResponseBody</p> */ public static class QualityOsSdkVersionStatDataList extends TeaModel { @com.aliyun.core.annotation.NameInMap("AudioDelay") private Long audioDelay; @com.aliyun.core.annotation.NameInMap("AudioHighQualityTransmissionRate") private String audioHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("AudioStuckRate") private String audioStuckRate; @com.aliyun.core.annotation.NameInMap("CallDurationRatio") private String callDurationRatio; @com.aliyun.core.annotation.NameInMap("JoinChannelSucFiveSecRate") private String joinChannelSucFiveSecRate; @com.aliyun.core.annotation.NameInMap("JoinChannelSucRate") private String joinChannelSucRate; @com.aliyun.core.annotation.NameInMap("Name") private String name; @com.aliyun.core.annotation.NameInMap("Os") private String os; @com.aliyun.core.annotation.NameInMap("VideoDelay") private Long videoDelay; @com.aliyun.core.annotation.NameInMap("VideoFirstPicDuration") private Long videoFirstPicDuration; @com.aliyun.core.annotation.NameInMap("VideoHighQualityTransmissionRate") private String videoHighQualityTransmissionRate; @com.aliyun.core.annotation.NameInMap("VideoStuckRate") private String videoStuckRate; private QualityOsSdkVersionStatDataList(Builder builder) { this.audioDelay = builder.audioDelay; this.audioHighQualityTransmissionRate = builder.audioHighQualityTransmissionRate; this.audioStuckRate = builder.audioStuckRate; this.callDurationRatio = builder.callDurationRatio; this.joinChannelSucFiveSecRate = builder.joinChannelSucFiveSecRate; this.joinChannelSucRate = builder.joinChannelSucRate; this.name = builder.name; this.os = builder.os; this.videoDelay = builder.videoDelay; this.videoFirstPicDuration = builder.videoFirstPicDuration; this.videoHighQualityTransmissionRate = builder.videoHighQualityTransmissionRate; this.videoStuckRate = builder.videoStuckRate; } public static Builder builder() { return new Builder(); } public static QualityOsSdkVersionStatDataList create() { return builder().build(); } /** * @return audioDelay */ public Long getAudioDelay() { return this.audioDelay; } /** * @return audioHighQualityTransmissionRate */ public String getAudioHighQualityTransmissionRate() { return this.audioHighQualityTransmissionRate; } /** * @return audioStuckRate */ public String getAudioStuckRate() { return this.audioStuckRate; } /** * @return callDurationRatio */ public String getCallDurationRatio() { return this.callDurationRatio; } /** * @return joinChannelSucFiveSecRate */ public String getJoinChannelSucFiveSecRate() { return this.joinChannelSucFiveSecRate; } /** * @return joinChannelSucRate */ public String getJoinChannelSucRate() { return this.joinChannelSucRate; } /** * @return name */ public String getName() { return this.name; } /** * @return os */ public String getOs() { return this.os; } /** * @return videoDelay */ public Long getVideoDelay() { return this.videoDelay; } /** * @return videoFirstPicDuration */ public Long getVideoFirstPicDuration() { return this.videoFirstPicDuration; } /** * @return videoHighQualityTransmissionRate */ public String getVideoHighQualityTransmissionRate() { return this.videoHighQualityTransmissionRate; } /** * @return videoStuckRate */ public String getVideoStuckRate() { return this.videoStuckRate; } public static final class Builder { private Long audioDelay; private String audioHighQualityTransmissionRate; private String audioStuckRate; private String callDurationRatio; private String joinChannelSucFiveSecRate; private String joinChannelSucRate; private String name; private String os; private Long videoDelay; private Long videoFirstPicDuration; private String videoHighQualityTransmissionRate; private String videoStuckRate; private Builder() { } private Builder(QualityOsSdkVersionStatDataList model) { this.audioDelay = model.audioDelay; this.audioHighQualityTransmissionRate = model.audioHighQualityTransmissionRate; this.audioStuckRate = model.audioStuckRate; this.callDurationRatio = model.callDurationRatio; this.joinChannelSucFiveSecRate = model.joinChannelSucFiveSecRate; this.joinChannelSucRate = model.joinChannelSucRate; this.name = model.name; this.os = model.os; this.videoDelay = model.videoDelay; this.videoFirstPicDuration = model.videoFirstPicDuration; this.videoHighQualityTransmissionRate = model.videoHighQualityTransmissionRate; this.videoStuckRate = model.videoStuckRate; } /** * AudioDelay. */ public Builder audioDelay(Long audioDelay) { this.audioDelay = audioDelay; return this; } /** * AudioHighQualityTransmissionRate. */ public Builder audioHighQualityTransmissionRate(String audioHighQualityTransmissionRate) { this.audioHighQualityTransmissionRate = audioHighQualityTransmissionRate; return this; } /** * AudioStuckRate. */ public Builder audioStuckRate(String audioStuckRate) { this.audioStuckRate = audioStuckRate; return this; } /** * CallDurationRatio. */ public Builder callDurationRatio(String callDurationRatio) { this.callDurationRatio = callDurationRatio; return this; } /** * JoinChannelSucFiveSecRate. */ public Builder joinChannelSucFiveSecRate(String joinChannelSucFiveSecRate) { this.joinChannelSucFiveSecRate = joinChannelSucFiveSecRate; return this; } /** * JoinChannelSucRate. */ public Builder joinChannelSucRate(String joinChannelSucRate) { this.joinChannelSucRate = joinChannelSucRate; return this; } /** * Name. */ public Builder name(String name) { this.name = name; return this; } /** * Os. */ public Builder os(String os) { this.os = os; return this; } /** * VideoDelay. */ public Builder videoDelay(Long videoDelay) { this.videoDelay = videoDelay; return this; } /** * VideoFirstPicDuration. */ public Builder videoFirstPicDuration(Long videoFirstPicDuration) { this.videoFirstPicDuration = videoFirstPicDuration; return this; } /** * VideoHighQualityTransmissionRate. */ public Builder videoHighQualityTransmissionRate(String videoHighQualityTransmissionRate) { this.videoHighQualityTransmissionRate = videoHighQualityTransmissionRate; return this; } /** * VideoStuckRate. */ public Builder videoStuckRate(String videoStuckRate) { this.videoStuckRate = videoStuckRate; return this; } public QualityOsSdkVersionStatDataList build() { return new QualityOsSdkVersionStatDataList(this); } } } }
0
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111
java-sources/com/aliyun/alibabacloud-rtc20180111/5.0.11/com/aliyun/sdk/service/rtc20180111/models/DescribeQualityOverallDataRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.sdk.service.rtc20180111.models; import com.aliyun.sdk.gateway.pop.*; import darabonba.core.*; import darabonba.core.async.*; import darabonba.core.sync.*; import darabonba.core.client.*; import darabonba.core.RequestModel; import darabonba.core.TeaModel; import com.aliyun.sdk.gateway.pop.models.*; /** * * {@link DescribeQualityOverallDataRequest} extends {@link RequestModel} * * <p>DescribeQualityOverallDataRequest</p> */ public class DescribeQualityOverallDataRequest extends Request { @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("AppId") @com.aliyun.core.annotation.Validation(required = true) private String appId; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("EndDate") @com.aliyun.core.annotation.Validation(required = true) private Long endDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("StartDate") @com.aliyun.core.annotation.Validation(required = true) private Long startDate; @com.aliyun.core.annotation.Query @com.aliyun.core.annotation.NameInMap("Types") @com.aliyun.core.annotation.Validation(required = true) private String types; private DescribeQualityOverallDataRequest(Builder builder) { super(builder); this.appId = builder.appId; this.endDate = builder.endDate; this.startDate = builder.startDate; this.types = builder.types; } public static Builder builder() { return new Builder(); } public static DescribeQualityOverallDataRequest create() { return builder().build(); } @Override public Builder toBuilder() { return new Builder(this); } /** * @return appId */ public String getAppId() { return this.appId; } /** * @return endDate */ public Long getEndDate() { return this.endDate; } /** * @return startDate */ public Long getStartDate() { return this.startDate; } /** * @return types */ public String getTypes() { return this.types; } public static final class Builder extends Request.Builder<DescribeQualityOverallDataRequest, Builder> { private String appId; private Long endDate; private Long startDate; private String types; private Builder() { super(); } private Builder(DescribeQualityOverallDataRequest request) { super(request); this.appId = request.appId; this.endDate = request.endDate; this.startDate = request.startDate; this.types = request.types; } /** * <p>APP ID</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>0rbd****</p> */ public Builder appId(String appId) { this.putQueryParameter("AppId", appId); this.appId = appId; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615910399</p> */ public Builder endDate(Long endDate) { this.putQueryParameter("EndDate", endDate); this.endDate = endDate; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1615824000</p> */ public Builder startDate(Long startDate) { this.putQueryParameter("StartDate", startDate); this.startDate = startDate; return this; } /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>JOIN_CHANNEL_SUC_RATE</p> */ public Builder types(String types) { this.putQueryParameter("Types", types); this.types = types; return this; } @Override public DescribeQualityOverallDataRequest build() { return new DescribeQualityOverallDataRequest(this); } } }