index int64 | repo_id string | file_path string | content string |
|---|---|---|---|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonTraceDetailsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonTraceDetailsResponseBody} extends {@link TeaModel}
*
* <p>ListPersonTraceDetailsResponseBody</p>
*/
public class ListPersonTraceDetailsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("Message")
private String message;
@NameInMap("PageNumber")
private Long pageNumber;
@NameInMap("PageSize")
private Long pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("TotalCount")
private Long totalCount;
private ListPersonTraceDetailsResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonTraceDetailsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return totalCount
*/
public Long getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private String code;
private java.util.List < Data> data;
private String message;
private Long pageNumber;
private Long pageSize;
private String requestId;
private Long totalCount;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public ListPersonTraceDetailsResponseBody build() {
return new ListPersonTraceDetailsResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("CorpId")
private String corpId;
@NameInMap("DataSourceId")
private String dataSourceId;
@NameInMap("LeftTopX")
private String leftTopX;
@NameInMap("LeftTopY")
private String leftTopY;
@NameInMap("PersonId")
private String personId;
@NameInMap("PicUrlPath")
private String picUrlPath;
@NameInMap("RightBottomX")
private String rightBottomX;
@NameInMap("RightBottomY")
private String rightBottomY;
@NameInMap("ShotTime")
private String shotTime;
@NameInMap("SubId")
private String subId;
@NameInMap("TargetPicUrlPath")
private String targetPicUrlPath;
private Data(Builder builder) {
this.corpId = builder.corpId;
this.dataSourceId = builder.dataSourceId;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.personId = builder.personId;
this.picUrlPath = builder.picUrlPath;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
this.shotTime = builder.shotTime;
this.subId = builder.subId;
this.targetPicUrlPath = builder.targetPicUrlPath;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return dataSourceId
*/
public String getDataSourceId() {
return this.dataSourceId;
}
/**
* @return leftTopX
*/
public String getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public String getLeftTopY() {
return this.leftTopY;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return picUrlPath
*/
public String getPicUrlPath() {
return this.picUrlPath;
}
/**
* @return rightBottomX
*/
public String getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public String getRightBottomY() {
return this.rightBottomY;
}
/**
* @return shotTime
*/
public String getShotTime() {
return this.shotTime;
}
/**
* @return subId
*/
public String getSubId() {
return this.subId;
}
/**
* @return targetPicUrlPath
*/
public String getTargetPicUrlPath() {
return this.targetPicUrlPath;
}
public static final class Builder {
private String corpId;
private String dataSourceId;
private String leftTopX;
private String leftTopY;
private String personId;
private String picUrlPath;
private String rightBottomX;
private String rightBottomY;
private String shotTime;
private String subId;
private String targetPicUrlPath;
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.corpId = corpId;
return this;
}
/**
* DataSourceId.
*/
public Builder dataSourceId(String dataSourceId) {
this.dataSourceId = dataSourceId;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(String leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(String leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.personId = personId;
return this;
}
/**
* PicUrlPath.
*/
public Builder picUrlPath(String picUrlPath) {
this.picUrlPath = picUrlPath;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(String rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(String rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
/**
* ShotTime.
*/
public Builder shotTime(String shotTime) {
this.shotTime = shotTime;
return this;
}
/**
* SubId.
*/
public Builder subId(String subId) {
this.subId = subId;
return this;
}
/**
* TargetPicUrlPath.
*/
public Builder targetPicUrlPath(String targetPicUrlPath) {
this.targetPicUrlPath = targetPicUrlPath;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonTraceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonTraceRequest} extends {@link RequestModel}
*
* <p>ListPersonTraceRequest</p>
*/
public class ListPersonTraceRequest extends Request {
@Body
@NameInMap("CorpId")
private String corpId;
@Body
@NameInMap("DataSourceId")
private String dataSourceId;
@Body
@NameInMap("EndTime")
@Validation(required = true)
private String endTime;
@Body
@NameInMap("GroupId")
@Validation(required = true)
private String groupId;
@Body
@NameInMap("PageNumber")
@Validation(required = true)
private String pageNumber;
@Body
@NameInMap("PageSize")
@Validation(required = true)
private String pageSize;
@Body
@NameInMap("PersonId")
private String personId;
@Body
@NameInMap("StartTime")
@Validation(required = true)
private String startTime;
private ListPersonTraceRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.dataSourceId = builder.dataSourceId;
this.endTime = builder.endTime;
this.groupId = builder.groupId;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.personId = builder.personId;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonTraceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return dataSourceId
*/
public String getDataSourceId() {
return this.dataSourceId;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return pageNumber
*/
public String getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder<ListPersonTraceRequest, Builder> {
private String corpId;
private String dataSourceId;
private String endTime;
private String groupId;
private String pageNumber;
private String pageSize;
private String personId;
private String startTime;
private Builder() {
super();
}
private Builder(ListPersonTraceRequest response) {
super(response);
this.corpId = response.corpId;
this.dataSourceId = response.dataSourceId;
this.endTime = response.endTime;
this.groupId = response.groupId;
this.pageNumber = response.pageNumber;
this.pageSize = response.pageSize;
this.personId = response.personId;
this.startTime = response.startTime;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DataSourceId.
*/
public Builder dataSourceId(String dataSourceId) {
this.putBodyParameter("DataSourceId", dataSourceId);
this.dataSourceId = dataSourceId;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* GroupId.
*/
public Builder groupId(String groupId) {
this.putBodyParameter("GroupId", groupId);
this.groupId = groupId;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(String pageNumber) {
this.putBodyParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(String pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.putBodyParameter("PersonId", personId);
this.personId = personId;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.putBodyParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public ListPersonTraceRequest build() {
return new ListPersonTraceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonTraceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonTraceResponse} extends {@link TeaModel}
*
* <p>ListPersonTraceResponse</p>
*/
public class ListPersonTraceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListPersonTraceResponseBody body;
private ListPersonTraceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListPersonTraceResponse 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 body
*/
public ListPersonTraceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListPersonTraceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListPersonTraceResponseBody body);
@Override
ListPersonTraceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListPersonTraceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListPersonTraceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListPersonTraceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListPersonTraceResponseBody body) {
this.body = body;
return this;
}
@Override
public ListPersonTraceResponse build() {
return new ListPersonTraceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonTraceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonTraceResponseBody} extends {@link TeaModel}
*
* <p>ListPersonTraceResponseBody</p>
*/
public class ListPersonTraceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("Message")
private String message;
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private String success;
@NameInMap("TotalCount")
private Integer totalCount;
private ListPersonTraceResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.success = builder.success;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonTraceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public String getSuccess() {
return this.success;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private String code;
private java.util.List < Data> data;
private String message;
private Integer pageNumber;
private Integer pageSize;
private String requestId;
private String success;
private Integer totalCount;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(String success) {
this.success = success;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public ListPersonTraceResponseBody build() {
return new ListPersonTraceResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("CorpId")
private String corpId;
@NameInMap("Date")
private String date;
@NameInMap("DeviceId")
private String deviceId;
@NameInMap("EndSourceImage")
private String endSourceImage;
@NameInMap("EndTargetImage")
private String endTargetImage;
@NameInMap("GroupId")
private String groupId;
@NameInMap("LastTime")
private String lastTime;
@NameInMap("PersonId")
private String personId;
@NameInMap("StartSourceImage")
private String startSourceImage;
@NameInMap("StartTargetImage")
private String startTargetImage;
@NameInMap("StartTime")
private String startTime;
private Data(Builder builder) {
this.corpId = builder.corpId;
this.date = builder.date;
this.deviceId = builder.deviceId;
this.endSourceImage = builder.endSourceImage;
this.endTargetImage = builder.endTargetImage;
this.groupId = builder.groupId;
this.lastTime = builder.lastTime;
this.personId = builder.personId;
this.startSourceImage = builder.startSourceImage;
this.startTargetImage = builder.startTargetImage;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return date
*/
public String getDate() {
return this.date;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return endSourceImage
*/
public String getEndSourceImage() {
return this.endSourceImage;
}
/**
* @return endTargetImage
*/
public String getEndTargetImage() {
return this.endTargetImage;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return lastTime
*/
public String getLastTime() {
return this.lastTime;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return startSourceImage
*/
public String getStartSourceImage() {
return this.startSourceImage;
}
/**
* @return startTargetImage
*/
public String getStartTargetImage() {
return this.startTargetImage;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
public static final class Builder {
private String corpId;
private String date;
private String deviceId;
private String endSourceImage;
private String endTargetImage;
private String groupId;
private String lastTime;
private String personId;
private String startSourceImage;
private String startTargetImage;
private String startTime;
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.corpId = corpId;
return this;
}
/**
* Date.
*/
public Builder date(String date) {
this.date = date;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
/**
* EndSourceImage.
*/
public Builder endSourceImage(String endSourceImage) {
this.endSourceImage = endSourceImage;
return this;
}
/**
* EndTargetImage.
*/
public Builder endTargetImage(String endTargetImage) {
this.endTargetImage = endTargetImage;
return this;
}
/**
* GroupId.
*/
public Builder groupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* LastTime.
*/
public Builder lastTime(String lastTime) {
this.lastTime = lastTime;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.personId = personId;
return this;
}
/**
* StartSourceImage.
*/
public Builder startSourceImage(String startSourceImage) {
this.startSourceImage = startSourceImage;
return this;
}
/**
* StartTargetImage.
*/
public Builder startTargetImage(String startTargetImage) {
this.startTargetImage = startTargetImage;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.startTime = startTime;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonVisitCountRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonVisitCountRequest} extends {@link RequestModel}
*
* <p>ListPersonVisitCountRequest</p>
*/
public class ListPersonVisitCountRequest extends Request {
@Body
@NameInMap("AggregateType")
@Validation(required = true)
private String aggregateType;
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("CountType")
private String countType;
@Body
@NameInMap("EndTime")
@Validation(required = true)
private String endTime;
@Body
@NameInMap("MaxVal")
private Integer maxVal;
@Body
@NameInMap("MinVal")
private Integer minVal;
@Body
@NameInMap("PageNumber")
@Validation(required = true, maximum = 999999999)
private Integer pageNumber;
@Body
@NameInMap("PageSize")
@Validation(required = true, maximum = 9999999999D)
private Integer pageSize;
@Body
@NameInMap("StartTime")
@Validation(required = true)
private String startTime;
@Body
@NameInMap("TagCode")
@Validation(required = true)
private String tagCode;
@Body
@NameInMap("TimeAggregateType")
@Validation(required = true)
private String timeAggregateType;
private ListPersonVisitCountRequest(Builder builder) {
super(builder);
this.aggregateType = builder.aggregateType;
this.corpId = builder.corpId;
this.countType = builder.countType;
this.endTime = builder.endTime;
this.maxVal = builder.maxVal;
this.minVal = builder.minVal;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.startTime = builder.startTime;
this.tagCode = builder.tagCode;
this.timeAggregateType = builder.timeAggregateType;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonVisitCountRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return aggregateType
*/
public String getAggregateType() {
return this.aggregateType;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return countType
*/
public String getCountType() {
return this.countType;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return maxVal
*/
public Integer getMaxVal() {
return this.maxVal;
}
/**
* @return minVal
*/
public Integer getMinVal() {
return this.minVal;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
/**
* @return tagCode
*/
public String getTagCode() {
return this.tagCode;
}
/**
* @return timeAggregateType
*/
public String getTimeAggregateType() {
return this.timeAggregateType;
}
public static final class Builder extends Request.Builder<ListPersonVisitCountRequest, Builder> {
private String aggregateType;
private String corpId;
private String countType;
private String endTime;
private Integer maxVal;
private Integer minVal;
private Integer pageNumber;
private Integer pageSize;
private String startTime;
private String tagCode;
private String timeAggregateType;
private Builder() {
super();
}
private Builder(ListPersonVisitCountRequest response) {
super(response);
this.aggregateType = response.aggregateType;
this.corpId = response.corpId;
this.countType = response.countType;
this.endTime = response.endTime;
this.maxVal = response.maxVal;
this.minVal = response.minVal;
this.pageNumber = response.pageNumber;
this.pageSize = response.pageSize;
this.startTime = response.startTime;
this.tagCode = response.tagCode;
this.timeAggregateType = response.timeAggregateType;
}
/**
* AggregateType.
*/
public Builder aggregateType(String aggregateType) {
this.putBodyParameter("AggregateType", aggregateType);
this.aggregateType = aggregateType;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* CountType.
*/
public Builder countType(String countType) {
this.putBodyParameter("CountType", countType);
this.countType = countType;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* MaxVal.
*/
public Builder maxVal(Integer maxVal) {
this.putBodyParameter("MaxVal", maxVal);
this.maxVal = maxVal;
return this;
}
/**
* MinVal.
*/
public Builder minVal(Integer minVal) {
this.putBodyParameter("MinVal", minVal);
this.minVal = minVal;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putBodyParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.putBodyParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
/**
* TagCode.
*/
public Builder tagCode(String tagCode) {
this.putBodyParameter("TagCode", tagCode);
this.tagCode = tagCode;
return this;
}
/**
* TimeAggregateType.
*/
public Builder timeAggregateType(String timeAggregateType) {
this.putBodyParameter("TimeAggregateType", timeAggregateType);
this.timeAggregateType = timeAggregateType;
return this;
}
@Override
public ListPersonVisitCountRequest build() {
return new ListPersonVisitCountRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonVisitCountResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonVisitCountResponse} extends {@link TeaModel}
*
* <p>ListPersonVisitCountResponse</p>
*/
public class ListPersonVisitCountResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListPersonVisitCountResponseBody body;
private ListPersonVisitCountResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListPersonVisitCountResponse 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 body
*/
public ListPersonVisitCountResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListPersonVisitCountResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListPersonVisitCountResponseBody body);
@Override
ListPersonVisitCountResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListPersonVisitCountResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListPersonVisitCountResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListPersonVisitCountResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListPersonVisitCountResponseBody body) {
this.body = body;
return this;
}
@Override
public ListPersonVisitCountResponse build() {
return new ListPersonVisitCountResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonVisitCountResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonVisitCountResponseBody} extends {@link TeaModel}
*
* <p>ListPersonVisitCountResponseBody</p>
*/
public class ListPersonVisitCountResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("Message")
private String message;
@NameInMap("PageNo")
private String pageNo;
@NameInMap("PageSize")
private String pageSize;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private String success;
@NameInMap("TotalCount")
private String totalCount;
private ListPersonVisitCountResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.requestId = builder.requestId;
this.success = builder.success;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonVisitCountResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return pageNo
*/
public String getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public String getSuccess() {
return this.success;
}
/**
* @return totalCount
*/
public String getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private String code;
private java.util.List < Data> data;
private String message;
private String pageNo;
private String pageSize;
private String requestId;
private String success;
private String totalCount;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(String pageNo) {
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(String pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(String success) {
this.success = success;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(String totalCount) {
this.totalCount = totalCount;
return this;
}
public ListPersonVisitCountResponseBody build() {
return new ListPersonVisitCountResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("CorpId")
private String corpId;
@NameInMap("DayId")
private String dayId;
@NameInMap("DeviceId")
private String deviceId;
@NameInMap("GroupId")
private String groupId;
@NameInMap("HourId")
private String hourId;
@NameInMap("PersonId")
private String personId;
@NameInMap("TagCode")
private String tagCode;
@NameInMap("TagMetrics")
private String tagMetrics;
private Data(Builder builder) {
this.corpId = builder.corpId;
this.dayId = builder.dayId;
this.deviceId = builder.deviceId;
this.groupId = builder.groupId;
this.hourId = builder.hourId;
this.personId = builder.personId;
this.tagCode = builder.tagCode;
this.tagMetrics = builder.tagMetrics;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return dayId
*/
public String getDayId() {
return this.dayId;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return groupId
*/
public String getGroupId() {
return this.groupId;
}
/**
* @return hourId
*/
public String getHourId() {
return this.hourId;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return tagCode
*/
public String getTagCode() {
return this.tagCode;
}
/**
* @return tagMetrics
*/
public String getTagMetrics() {
return this.tagMetrics;
}
public static final class Builder {
private String corpId;
private String dayId;
private String deviceId;
private String groupId;
private String hourId;
private String personId;
private String tagCode;
private String tagMetrics;
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.corpId = corpId;
return this;
}
/**
* DayId.
*/
public Builder dayId(String dayId) {
this.dayId = dayId;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
/**
* GroupId.
*/
public Builder groupId(String groupId) {
this.groupId = groupId;
return this;
}
/**
* HourId.
*/
public Builder hourId(String hourId) {
this.hourId = hourId;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.personId = personId;
return this;
}
/**
* TagCode.
*/
public Builder tagCode(String tagCode) {
this.tagCode = tagCode;
return this;
}
/**
* TagMetrics.
*/
public Builder tagMetrics(String tagMetrics) {
this.tagMetrics = tagMetrics;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonsRequest} extends {@link RequestModel}
*
* <p>ListPersonsRequest</p>
*/
public class ListPersonsRequest extends Request {
@Body
@NameInMap("AlgorithmType")
private String algorithmType;
@Body
@NameInMap("CorpId")
private String corpId;
@Body
@NameInMap("EndTime")
private String endTime;
@Body
@NameInMap("PageNo")
private String pageNo;
@Body
@NameInMap("PageSize")
private String pageSize;
@Body
@NameInMap("StartTime")
private String startTime;
private ListPersonsRequest(Builder builder) {
super(builder);
this.algorithmType = builder.algorithmType;
this.corpId = builder.corpId;
this.endTime = builder.endTime;
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return algorithmType
*/
public String getAlgorithmType() {
return this.algorithmType;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return pageNo
*/
public String getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return startTime
*/
public String getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder<ListPersonsRequest, Builder> {
private String algorithmType;
private String corpId;
private String endTime;
private String pageNo;
private String pageSize;
private String startTime;
private Builder() {
super();
}
private Builder(ListPersonsRequest response) {
super(response);
this.algorithmType = response.algorithmType;
this.corpId = response.corpId;
this.endTime = response.endTime;
this.pageNo = response.pageNo;
this.pageSize = response.pageSize;
this.startTime = response.startTime;
}
/**
* AlgorithmType.
*/
public Builder algorithmType(String algorithmType) {
this.putBodyParameter("AlgorithmType", algorithmType);
this.algorithmType = algorithmType;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(String pageNo) {
this.putBodyParameter("PageNo", pageNo);
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(String pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* StartTime.
*/
public Builder startTime(String startTime) {
this.putBodyParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public ListPersonsRequest build() {
return new ListPersonsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonsResponse} extends {@link TeaModel}
*
* <p>ListPersonsResponse</p>
*/
public class ListPersonsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListPersonsResponseBody body;
private ListPersonsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListPersonsResponse 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 body
*/
public ListPersonsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListPersonsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListPersonsResponseBody body);
@Override
ListPersonsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListPersonsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListPersonsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListPersonsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListPersonsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListPersonsResponse build() {
return new ListPersonsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListPersonsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListPersonsResponseBody} extends {@link TeaModel}
*
* <p>ListPersonsResponseBody</p>
*/
public class ListPersonsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ListPersonsResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListPersonsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListPersonsResponseBody build() {
return new ListPersonsResponseBody(this);
}
}
public static class TagList extends TeaModel {
@NameInMap("TagCode")
private String tagCode;
@NameInMap("TagName")
private String tagName;
@NameInMap("TagValue")
private String tagValue;
@NameInMap("TagValueId")
private String tagValueId;
private TagList(Builder builder) {
this.tagCode = builder.tagCode;
this.tagName = builder.tagName;
this.tagValue = builder.tagValue;
this.tagValueId = builder.tagValueId;
}
public static Builder builder() {
return new Builder();
}
public static TagList create() {
return builder().build();
}
/**
* @return tagCode
*/
public String getTagCode() {
return this.tagCode;
}
/**
* @return tagName
*/
public String getTagName() {
return this.tagName;
}
/**
* @return tagValue
*/
public String getTagValue() {
return this.tagValue;
}
/**
* @return tagValueId
*/
public String getTagValueId() {
return this.tagValueId;
}
public static final class Builder {
private String tagCode;
private String tagName;
private String tagValue;
private String tagValueId;
/**
* TagCode.
*/
public Builder tagCode(String tagCode) {
this.tagCode = tagCode;
return this;
}
/**
* TagName.
*/
public Builder tagName(String tagName) {
this.tagName = tagName;
return this;
}
/**
* TagValue.
*/
public Builder tagValue(String tagValue) {
this.tagValue = tagValue;
return this;
}
/**
* TagValueId.
*/
public Builder tagValueId(String tagValueId) {
this.tagValueId = tagValueId;
return this;
}
public TagList build() {
return new TagList(this);
}
}
}
public static class Records extends TeaModel {
@NameInMap("FirstAppearTime")
private String firstAppearTime;
@NameInMap("PersonId")
private String personId;
@NameInMap("PicUrl")
private String picUrl;
@NameInMap("TagList")
private java.util.List < TagList> tagList;
private Records(Builder builder) {
this.firstAppearTime = builder.firstAppearTime;
this.personId = builder.personId;
this.picUrl = builder.picUrl;
this.tagList = builder.tagList;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return firstAppearTime
*/
public String getFirstAppearTime() {
return this.firstAppearTime;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return picUrl
*/
public String getPicUrl() {
return this.picUrl;
}
/**
* @return tagList
*/
public java.util.List < TagList> getTagList() {
return this.tagList;
}
public static final class Builder {
private String firstAppearTime;
private String personId;
private String picUrl;
private java.util.List < TagList> tagList;
/**
* FirstAppearTime.
*/
public Builder firstAppearTime(String firstAppearTime) {
this.firstAppearTime = firstAppearTime;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.personId = personId;
return this;
}
/**
* PicUrl.
*/
public Builder picUrl(String picUrl) {
this.picUrl = picUrl;
return this;
}
/**
* TagList.
*/
public Builder tagList(java.util.List < TagList> tagList) {
this.tagList = tagList;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNo")
private String pageNo;
@NameInMap("PageSize")
private String pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("TotalCount")
private String totalCount;
@NameInMap("TotalPage")
private String totalPage;
private Data(Builder builder) {
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.totalCount = builder.totalCount;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNo
*/
public String getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public String getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return totalCount
*/
public String getTotalCount() {
return this.totalCount;
}
/**
* @return totalPage
*/
public String getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private String pageNo;
private String pageSize;
private java.util.List < Records> records;
private String totalCount;
private String totalPage;
/**
* PageNo.
*/
public Builder pageNo(String pageNo) {
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(String pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Records.
*/
public Builder records(java.util.List < Records> records) {
this.records = records;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(String totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TotalPage.
*/
public Builder totalPage(String totalPage) {
this.totalPage = totalPage;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListSubscribeDeviceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListSubscribeDeviceRequest} extends {@link RequestModel}
*
* <p>ListSubscribeDeviceRequest</p>
*/
public class ListSubscribeDeviceRequest extends Request {
@Query
@NameInMap("PageNum")
@Validation(required = true, maximum = 10000, minimum = 1)
private Integer pageNum;
@Query
@NameInMap("PageSize")
@Validation(required = true, maximum = 200, minimum = 1)
private Integer pageSize;
private ListSubscribeDeviceRequest(Builder builder) {
super(builder);
this.pageNum = builder.pageNum;
this.pageSize = builder.pageSize;
}
public static Builder builder() {
return new Builder();
}
public static ListSubscribeDeviceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return pageNum
*/
public Integer getPageNum() {
return this.pageNum;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
public static final class Builder extends Request.Builder<ListSubscribeDeviceRequest, Builder> {
private Integer pageNum;
private Integer pageSize;
private Builder() {
super();
}
private Builder(ListSubscribeDeviceRequest response) {
super(response);
this.pageNum = response.pageNum;
this.pageSize = response.pageSize;
}
/**
* 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 ListSubscribeDeviceRequest build() {
return new ListSubscribeDeviceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListSubscribeDeviceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListSubscribeDeviceResponse} extends {@link TeaModel}
*
* <p>ListSubscribeDeviceResponse</p>
*/
public class ListSubscribeDeviceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListSubscribeDeviceResponseBody body;
private ListSubscribeDeviceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListSubscribeDeviceResponse 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 body
*/
public ListSubscribeDeviceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListSubscribeDeviceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListSubscribeDeviceResponseBody body);
@Override
ListSubscribeDeviceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListSubscribeDeviceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListSubscribeDeviceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListSubscribeDeviceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListSubscribeDeviceResponseBody body) {
this.body = body;
return this;
}
@Override
public ListSubscribeDeviceResponse build() {
return new ListSubscribeDeviceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListSubscribeDeviceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListSubscribeDeviceResponseBody} extends {@link TeaModel}
*
* <p>ListSubscribeDeviceResponseBody</p>
*/
public class ListSubscribeDeviceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ListSubscribeDeviceResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListSubscribeDeviceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListSubscribeDeviceResponseBody build() {
return new ListSubscribeDeviceResponseBody(this);
}
}
public static class SubscribeList extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("DeviceId")
private String deviceId;
@NameInMap("PushConfig")
private String pushConfig;
@NameInMap("UpdateTime")
private String updateTime;
@NameInMap("UserId")
private String userId;
private SubscribeList(Builder builder) {
this.createTime = builder.createTime;
this.deviceId = builder.deviceId;
this.pushConfig = builder.pushConfig;
this.updateTime = builder.updateTime;
this.userId = builder.userId;
}
public static Builder builder() {
return new Builder();
}
public static SubscribeList create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return pushConfig
*/
public String getPushConfig() {
return this.pushConfig;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
/**
* @return userId
*/
public String getUserId() {
return this.userId;
}
public static final class Builder {
private String createTime;
private String deviceId;
private String pushConfig;
private String updateTime;
private String userId;
/**
* CreateTime.
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
/**
* PushConfig.
*/
public Builder pushConfig(String pushConfig) {
this.pushConfig = pushConfig;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* UserId.
*/
public Builder userId(String userId) {
this.userId = userId;
return this;
}
public SubscribeList build() {
return new SubscribeList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("SubscribeList")
private java.util.List < SubscribeList> subscribeList;
@NameInMap("TotalCount")
private Integer totalCount;
private Data(Builder builder) {
this.subscribeList = builder.subscribeList;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return subscribeList
*/
public java.util.List < SubscribeList> getSubscribeList() {
return this.subscribeList;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private java.util.List < SubscribeList> subscribeList;
private Integer totalCount;
/**
* SubscribeList.
*/
public Builder subscribeList(java.util.List < SubscribeList> subscribeList) {
this.subscribeList = subscribeList;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUserGroupsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUserGroupsRequest} extends {@link RequestModel}
*
* <p>ListUserGroupsRequest</p>
*/
public class ListUserGroupsRequest extends Request {
@Query
@NameInMap("CorpId")
private String corpId;
@Query
@NameInMap("IsvSubId")
@Validation(required = true)
private String isvSubId;
private ListUserGroupsRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.isvSubId = builder.isvSubId;
}
public static Builder builder() {
return new Builder();
}
public static ListUserGroupsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return isvSubId
*/
public String getIsvSubId() {
return this.isvSubId;
}
public static final class Builder extends Request.Builder<ListUserGroupsRequest, Builder> {
private String corpId;
private String isvSubId;
private Builder() {
super();
}
private Builder(ListUserGroupsRequest response) {
super(response);
this.corpId = response.corpId;
this.isvSubId = response.isvSubId;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putQueryParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* IsvSubId.
*/
public Builder isvSubId(String isvSubId) {
this.putQueryParameter("IsvSubId", isvSubId);
this.isvSubId = isvSubId;
return this;
}
@Override
public ListUserGroupsRequest build() {
return new ListUserGroupsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUserGroupsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUserGroupsResponse} extends {@link TeaModel}
*
* <p>ListUserGroupsResponse</p>
*/
public class ListUserGroupsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListUserGroupsResponseBody body;
private ListUserGroupsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListUserGroupsResponse 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 body
*/
public ListUserGroupsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListUserGroupsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListUserGroupsResponseBody body);
@Override
ListUserGroupsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListUserGroupsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListUserGroupsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListUserGroupsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListUserGroupsResponseBody body) {
this.body = body;
return this;
}
@Override
public ListUserGroupsResponse build() {
return new ListUserGroupsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUserGroupsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUserGroupsResponseBody} extends {@link TeaModel}
*
* <p>ListUserGroupsResponseBody</p>
*/
public class ListUserGroupsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private java.util.List < Data> data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ListUserGroupsResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListUserGroupsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public java.util.List < Data> getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private java.util.List < Data> data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(java.util.List < Data> data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListUserGroupsResponseBody build() {
return new ListUserGroupsResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("CreateTime")
private String createTime;
@NameInMap("Creator")
private String creator;
@NameInMap("IsvSubId")
private String isvSubId;
@NameInMap("ParentUserGroupId")
private Long parentUserGroupId;
@NameInMap("UpdateTime")
private String updateTime;
@NameInMap("UserCount")
private Long userCount;
@NameInMap("UserGroupId")
private Long userGroupId;
@NameInMap("UserGroupName")
private String userGroupName;
private Data(Builder builder) {
this.createTime = builder.createTime;
this.creator = builder.creator;
this.isvSubId = builder.isvSubId;
this.parentUserGroupId = builder.parentUserGroupId;
this.updateTime = builder.updateTime;
this.userCount = builder.userCount;
this.userGroupId = builder.userGroupId;
this.userGroupName = builder.userGroupName;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return createTime
*/
public String getCreateTime() {
return this.createTime;
}
/**
* @return creator
*/
public String getCreator() {
return this.creator;
}
/**
* @return isvSubId
*/
public String getIsvSubId() {
return this.isvSubId;
}
/**
* @return parentUserGroupId
*/
public Long getParentUserGroupId() {
return this.parentUserGroupId;
}
/**
* @return updateTime
*/
public String getUpdateTime() {
return this.updateTime;
}
/**
* @return userCount
*/
public Long getUserCount() {
return this.userCount;
}
/**
* @return userGroupId
*/
public Long getUserGroupId() {
return this.userGroupId;
}
/**
* @return userGroupName
*/
public String getUserGroupName() {
return this.userGroupName;
}
public static final class Builder {
private String createTime;
private String creator;
private String isvSubId;
private Long parentUserGroupId;
private String updateTime;
private Long userCount;
private Long userGroupId;
private String userGroupName;
/**
* CreateTime.
*/
public Builder createTime(String createTime) {
this.createTime = createTime;
return this;
}
/**
* Creator.
*/
public Builder creator(String creator) {
this.creator = creator;
return this;
}
/**
* IsvSubId.
*/
public Builder isvSubId(String isvSubId) {
this.isvSubId = isvSubId;
return this;
}
/**
* ParentUserGroupId.
*/
public Builder parentUserGroupId(Long parentUserGroupId) {
this.parentUserGroupId = parentUserGroupId;
return this;
}
/**
* UpdateTime.
*/
public Builder updateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
/**
* UserCount.
*/
public Builder userCount(Long userCount) {
this.userCount = userCount;
return this;
}
/**
* UserGroupId.
*/
public Builder userGroupId(Long userGroupId) {
this.userGroupId = userGroupId;
return this;
}
/**
* UserGroupName.
*/
public Builder userGroupName(String userGroupName) {
this.userGroupName = userGroupName;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUsersRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUsersRequest} extends {@link RequestModel}
*
* <p>ListUsersRequest</p>
*/
public class ListUsersRequest extends Request {
@Body
@NameInMap("Address")
private String address;
@Body
@NameInMap("Age")
@Validation(maximum = 100, minimum = 1)
private Integer age;
@Body
@NameInMap("Attachment")
private String attachment;
@Body
@NameInMap("BizId")
private String bizId;
@Body
@NameInMap("CorpId")
private String corpId;
@Body
@NameInMap("FaceImageUrl")
private String faceImageUrl;
@Body
@NameInMap("Gender")
@Validation(maximum = 2, minimum = 1)
private Integer gender;
@Body
@NameInMap("IdNumber")
private String idNumber;
@Body
@NameInMap("IsvSubId")
@Validation(required = true)
private String isvSubId;
@Body
@NameInMap("MatchingRateThreshold")
private String matchingRateThreshold;
@Body
@NameInMap("PageNumber")
@Validation(required = true, maximum = 9999999999999D, minimum = 1)
private Long pageNumber;
@Body
@NameInMap("PageSize")
@Validation(required = true, maximum = 1000, minimum = 1)
private Long pageSize;
@Body
@NameInMap("PersonList")
private java.util.Map < String, ? > personList;
@Body
@NameInMap("PhoneNo")
private String phoneNo;
@Body
@NameInMap("PlateNo")
private String plateNo;
@Body
@NameInMap("UserGroupId")
@Validation(maximum = 9999999999999D, minimum = 1)
private Long userGroupId;
@Body
@NameInMap("UserList")
private java.util.Map < String, ? > userList;
@Body
@NameInMap("UserName")
private String userName;
private ListUsersRequest(Builder builder) {
super(builder);
this.address = builder.address;
this.age = builder.age;
this.attachment = builder.attachment;
this.bizId = builder.bizId;
this.corpId = builder.corpId;
this.faceImageUrl = builder.faceImageUrl;
this.gender = builder.gender;
this.idNumber = builder.idNumber;
this.isvSubId = builder.isvSubId;
this.matchingRateThreshold = builder.matchingRateThreshold;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.personList = builder.personList;
this.phoneNo = builder.phoneNo;
this.plateNo = builder.plateNo;
this.userGroupId = builder.userGroupId;
this.userList = builder.userList;
this.userName = builder.userName;
}
public static Builder builder() {
return new Builder();
}
public static ListUsersRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return address
*/
public String getAddress() {
return this.address;
}
/**
* @return age
*/
public Integer getAge() {
return this.age;
}
/**
* @return attachment
*/
public String getAttachment() {
return this.attachment;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return faceImageUrl
*/
public String getFaceImageUrl() {
return this.faceImageUrl;
}
/**
* @return gender
*/
public Integer getGender() {
return this.gender;
}
/**
* @return idNumber
*/
public String getIdNumber() {
return this.idNumber;
}
/**
* @return isvSubId
*/
public String getIsvSubId() {
return this.isvSubId;
}
/**
* @return matchingRateThreshold
*/
public String getMatchingRateThreshold() {
return this.matchingRateThreshold;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return personList
*/
public java.util.Map < String, ? > getPersonList() {
return this.personList;
}
/**
* @return phoneNo
*/
public String getPhoneNo() {
return this.phoneNo;
}
/**
* @return plateNo
*/
public String getPlateNo() {
return this.plateNo;
}
/**
* @return userGroupId
*/
public Long getUserGroupId() {
return this.userGroupId;
}
/**
* @return userList
*/
public java.util.Map < String, ? > getUserList() {
return this.userList;
}
/**
* @return userName
*/
public String getUserName() {
return this.userName;
}
public static final class Builder extends Request.Builder<ListUsersRequest, Builder> {
private String address;
private Integer age;
private String attachment;
private String bizId;
private String corpId;
private String faceImageUrl;
private Integer gender;
private String idNumber;
private String isvSubId;
private String matchingRateThreshold;
private Long pageNumber;
private Long pageSize;
private java.util.Map < String, ? > personList;
private String phoneNo;
private String plateNo;
private Long userGroupId;
private java.util.Map < String, ? > userList;
private String userName;
private Builder() {
super();
}
private Builder(ListUsersRequest response) {
super(response);
this.address = response.address;
this.age = response.age;
this.attachment = response.attachment;
this.bizId = response.bizId;
this.corpId = response.corpId;
this.faceImageUrl = response.faceImageUrl;
this.gender = response.gender;
this.idNumber = response.idNumber;
this.isvSubId = response.isvSubId;
this.matchingRateThreshold = response.matchingRateThreshold;
this.pageNumber = response.pageNumber;
this.pageSize = response.pageSize;
this.personList = response.personList;
this.phoneNo = response.phoneNo;
this.plateNo = response.plateNo;
this.userGroupId = response.userGroupId;
this.userList = response.userList;
this.userName = response.userName;
}
/**
* Address.
*/
public Builder address(String address) {
this.putBodyParameter("Address", address);
this.address = address;
return this;
}
/**
* Age.
*/
public Builder age(Integer age) {
this.putBodyParameter("Age", age);
this.age = age;
return this;
}
/**
* Attachment.
*/
public Builder attachment(String attachment) {
this.putBodyParameter("Attachment", attachment);
this.attachment = attachment;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.putBodyParameter("BizId", bizId);
this.bizId = bizId;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* FaceImageUrl.
*/
public Builder faceImageUrl(String faceImageUrl) {
this.putBodyParameter("FaceImageUrl", faceImageUrl);
this.faceImageUrl = faceImageUrl;
return this;
}
/**
* Gender.
*/
public Builder gender(Integer gender) {
this.putBodyParameter("Gender", gender);
this.gender = gender;
return this;
}
/**
* IdNumber.
*/
public Builder idNumber(String idNumber) {
this.putBodyParameter("IdNumber", idNumber);
this.idNumber = idNumber;
return this;
}
/**
* IsvSubId.
*/
public Builder isvSubId(String isvSubId) {
this.putBodyParameter("IsvSubId", isvSubId);
this.isvSubId = isvSubId;
return this;
}
/**
* MatchingRateThreshold.
*/
public Builder matchingRateThreshold(String matchingRateThreshold) {
this.putBodyParameter("MatchingRateThreshold", matchingRateThreshold);
this.matchingRateThreshold = matchingRateThreshold;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Long pageNumber) {
this.putBodyParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* PersonList.
*/
public Builder personList(java.util.Map < String, ? > personList) {
this.putBodyParameter("PersonList", personList);
this.personList = personList;
return this;
}
/**
* PhoneNo.
*/
public Builder phoneNo(String phoneNo) {
this.putBodyParameter("PhoneNo", phoneNo);
this.phoneNo = phoneNo;
return this;
}
/**
* PlateNo.
*/
public Builder plateNo(String plateNo) {
this.putBodyParameter("PlateNo", plateNo);
this.plateNo = plateNo;
return this;
}
/**
* UserGroupId.
*/
public Builder userGroupId(Long userGroupId) {
this.putBodyParameter("UserGroupId", userGroupId);
this.userGroupId = userGroupId;
return this;
}
/**
* UserList.
*/
public Builder userList(java.util.Map < String, ? > userList) {
this.putBodyParameter("UserList", userList);
this.userList = userList;
return this;
}
/**
* UserName.
*/
public Builder userName(String userName) {
this.putBodyParameter("UserName", userName);
this.userName = userName;
return this;
}
@Override
public ListUsersRequest build() {
return new ListUsersRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUsersResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUsersResponse} extends {@link TeaModel}
*
* <p>ListUsersResponse</p>
*/
public class ListUsersResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ListUsersResponseBody body;
private ListUsersResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ListUsersResponse 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 body
*/
public ListUsersResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ListUsersResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ListUsersResponseBody body);
@Override
ListUsersResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ListUsersResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ListUsersResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ListUsersResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ListUsersResponseBody body) {
this.body = body;
return this;
}
@Override
public ListUsersResponse build() {
return new ListUsersResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ListUsersResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ListUsersResponseBody} extends {@link TeaModel}
*
* <p>ListUsersResponseBody</p>
*/
public class ListUsersResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ListUsersResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ListUsersResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ListUsersResponseBody build() {
return new ListUsersResponseBody(this);
}
}
public static class Records extends TeaModel {
@NameInMap("Age")
private String age;
@NameInMap("Attachment")
private String attachment;
@NameInMap("BizId")
private String bizId;
@NameInMap("FaceImageUrl")
private String faceImageUrl;
@NameInMap("Gender")
private String gender;
@NameInMap("IdNumber")
private String idNumber;
@NameInMap("IsvSubId")
private String isvSubId;
@NameInMap("MatchingRate")
private String matchingRate;
@NameInMap("PersonId")
private String personId;
@NameInMap("UserGroupId")
private Integer userGroupId;
@NameInMap("UserId")
private Integer userId;
@NameInMap("UserName")
private String userName;
private Records(Builder builder) {
this.age = builder.age;
this.attachment = builder.attachment;
this.bizId = builder.bizId;
this.faceImageUrl = builder.faceImageUrl;
this.gender = builder.gender;
this.idNumber = builder.idNumber;
this.isvSubId = builder.isvSubId;
this.matchingRate = builder.matchingRate;
this.personId = builder.personId;
this.userGroupId = builder.userGroupId;
this.userId = builder.userId;
this.userName = builder.userName;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return age
*/
public String getAge() {
return this.age;
}
/**
* @return attachment
*/
public String getAttachment() {
return this.attachment;
}
/**
* @return bizId
*/
public String getBizId() {
return this.bizId;
}
/**
* @return faceImageUrl
*/
public String getFaceImageUrl() {
return this.faceImageUrl;
}
/**
* @return gender
*/
public String getGender() {
return this.gender;
}
/**
* @return idNumber
*/
public String getIdNumber() {
return this.idNumber;
}
/**
* @return isvSubId
*/
public String getIsvSubId() {
return this.isvSubId;
}
/**
* @return matchingRate
*/
public String getMatchingRate() {
return this.matchingRate;
}
/**
* @return personId
*/
public String getPersonId() {
return this.personId;
}
/**
* @return userGroupId
*/
public Integer getUserGroupId() {
return this.userGroupId;
}
/**
* @return userId
*/
public Integer getUserId() {
return this.userId;
}
/**
* @return userName
*/
public String getUserName() {
return this.userName;
}
public static final class Builder {
private String age;
private String attachment;
private String bizId;
private String faceImageUrl;
private String gender;
private String idNumber;
private String isvSubId;
private String matchingRate;
private String personId;
private Integer userGroupId;
private Integer userId;
private String userName;
/**
* Age.
*/
public Builder age(String age) {
this.age = age;
return this;
}
/**
* Attachment.
*/
public Builder attachment(String attachment) {
this.attachment = attachment;
return this;
}
/**
* BizId.
*/
public Builder bizId(String bizId) {
this.bizId = bizId;
return this;
}
/**
* FaceImageUrl.
*/
public Builder faceImageUrl(String faceImageUrl) {
this.faceImageUrl = faceImageUrl;
return this;
}
/**
* Gender.
*/
public Builder gender(String gender) {
this.gender = gender;
return this;
}
/**
* IdNumber.
*/
public Builder idNumber(String idNumber) {
this.idNumber = idNumber;
return this;
}
/**
* IsvSubId.
*/
public Builder isvSubId(String isvSubId) {
this.isvSubId = isvSubId;
return this;
}
/**
* MatchingRate.
*/
public Builder matchingRate(String matchingRate) {
this.matchingRate = matchingRate;
return this;
}
/**
* PersonId.
*/
public Builder personId(String personId) {
this.personId = personId;
return this;
}
/**
* UserGroupId.
*/
public Builder userGroupId(Integer userGroupId) {
this.userGroupId = userGroupId;
return this;
}
/**
* UserId.
*/
public Builder userId(Integer userId) {
this.userId = userId;
return this;
}
/**
* UserName.
*/
public Builder userName(String userName) {
this.userName = userName;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNumber")
private Long pageNumber;
@NameInMap("PageSize")
private Long pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("Success")
private Long success;
@NameInMap("Total")
private Long total;
private Data(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.success = builder.success;
this.total = builder.total;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return success
*/
public Long getSuccess() {
return this.success;
}
/**
* @return total
*/
public Long getTotal() {
return this.total;
}
public static final class Builder {
private Long pageNumber;
private Long pageSize;
private java.util.List < Records> records;
private Long success;
private Long total;
/**
* PageNumber.
*/
public Builder pageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Records.
*/
public Builder records(java.util.List < Records> records) {
this.records = records;
return this;
}
/**
* Success.
*/
public Builder success(Long success) {
this.success = success;
return this;
}
/**
* Total.
*/
public Builder total(Long total) {
this.total = total;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ModifyDeviceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyDeviceRequest} extends {@link RequestModel}
*
* <p>ModifyDeviceRequest</p>
*/
public class ModifyDeviceRequest extends Request {
@Body
@NameInMap("AudioEnable")
private String audioEnable;
@Body
@NameInMap("DeviceAddress")
private String deviceAddress;
@Body
@NameInMap("DeviceDirection")
private String deviceDirection;
@Body
@NameInMap("DeviceId")
@Validation(required = true)
private String deviceId;
@Body
@NameInMap("DeviceIp")
private String deviceIp;
@Body
@NameInMap("DeviceModel")
private String deviceModel;
@Body
@NameInMap("DeviceName")
private String deviceName;
@Body
@NameInMap("DeviceRate")
private String deviceRate;
@Body
@NameInMap("DeviceResolution")
private String deviceResolution;
@Body
@NameInMap("DeviceSite")
private String deviceSite;
@Body
@NameInMap("DeviceSubType")
private String deviceSubType;
@Body
@NameInMap("EncodeFormat")
private String encodeFormat;
@Body
@NameInMap("FrameRate")
private String frameRate;
@Body
@NameInMap("GovLength")
private String govLength;
@Body
@NameInMap("Latitude")
private String latitude;
@Body
@NameInMap("Longitude")
private String longitude;
@Body
@NameInMap("OSDTimeEnable")
private String OSDTimeEnable;
@Body
@NameInMap("OSDTimeType")
private String OSDTimeType;
@Body
@NameInMap("OSDTimeX")
private String OSDTimeX;
@Body
@NameInMap("OSDTimeY")
private String OSDTimeY;
@Body
@NameInMap("Password")
private String password;
@Body
@NameInMap("Vendor")
private String vendor;
private ModifyDeviceRequest(Builder builder) {
super(builder);
this.audioEnable = builder.audioEnable;
this.deviceAddress = builder.deviceAddress;
this.deviceDirection = builder.deviceDirection;
this.deviceId = builder.deviceId;
this.deviceIp = builder.deviceIp;
this.deviceModel = builder.deviceModel;
this.deviceName = builder.deviceName;
this.deviceRate = builder.deviceRate;
this.deviceResolution = builder.deviceResolution;
this.deviceSite = builder.deviceSite;
this.deviceSubType = builder.deviceSubType;
this.encodeFormat = builder.encodeFormat;
this.frameRate = builder.frameRate;
this.govLength = builder.govLength;
this.latitude = builder.latitude;
this.longitude = builder.longitude;
this.OSDTimeEnable = builder.OSDTimeEnable;
this.OSDTimeType = builder.OSDTimeType;
this.OSDTimeX = builder.OSDTimeX;
this.OSDTimeY = builder.OSDTimeY;
this.password = builder.password;
this.vendor = builder.vendor;
}
public static Builder builder() {
return new Builder();
}
public static ModifyDeviceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return audioEnable
*/
public String getAudioEnable() {
return this.audioEnable;
}
/**
* @return deviceAddress
*/
public String getDeviceAddress() {
return this.deviceAddress;
}
/**
* @return deviceDirection
*/
public String getDeviceDirection() {
return this.deviceDirection;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return deviceIp
*/
public String getDeviceIp() {
return this.deviceIp;
}
/**
* @return deviceModel
*/
public String getDeviceModel() {
return this.deviceModel;
}
/**
* @return deviceName
*/
public String getDeviceName() {
return this.deviceName;
}
/**
* @return deviceRate
*/
public String getDeviceRate() {
return this.deviceRate;
}
/**
* @return deviceResolution
*/
public String getDeviceResolution() {
return this.deviceResolution;
}
/**
* @return deviceSite
*/
public String getDeviceSite() {
return this.deviceSite;
}
/**
* @return deviceSubType
*/
public String getDeviceSubType() {
return this.deviceSubType;
}
/**
* @return encodeFormat
*/
public String getEncodeFormat() {
return this.encodeFormat;
}
/**
* @return frameRate
*/
public String getFrameRate() {
return this.frameRate;
}
/**
* @return govLength
*/
public String getGovLength() {
return this.govLength;
}
/**
* @return latitude
*/
public String getLatitude() {
return this.latitude;
}
/**
* @return longitude
*/
public String getLongitude() {
return this.longitude;
}
/**
* @return OSDTimeEnable
*/
public String getOSDTimeEnable() {
return this.OSDTimeEnable;
}
/**
* @return OSDTimeType
*/
public String getOSDTimeType() {
return this.OSDTimeType;
}
/**
* @return OSDTimeX
*/
public String getOSDTimeX() {
return this.OSDTimeX;
}
/**
* @return OSDTimeY
*/
public String getOSDTimeY() {
return this.OSDTimeY;
}
/**
* @return password
*/
public String getPassword() {
return this.password;
}
/**
* @return vendor
*/
public String getVendor() {
return this.vendor;
}
public static final class Builder extends Request.Builder<ModifyDeviceRequest, Builder> {
private String audioEnable;
private String deviceAddress;
private String deviceDirection;
private String deviceId;
private String deviceIp;
private String deviceModel;
private String deviceName;
private String deviceRate;
private String deviceResolution;
private String deviceSite;
private String deviceSubType;
private String encodeFormat;
private String frameRate;
private String govLength;
private String latitude;
private String longitude;
private String OSDTimeEnable;
private String OSDTimeType;
private String OSDTimeX;
private String OSDTimeY;
private String password;
private String vendor;
private Builder() {
super();
}
private Builder(ModifyDeviceRequest response) {
super(response);
this.audioEnable = response.audioEnable;
this.deviceAddress = response.deviceAddress;
this.deviceDirection = response.deviceDirection;
this.deviceId = response.deviceId;
this.deviceIp = response.deviceIp;
this.deviceModel = response.deviceModel;
this.deviceName = response.deviceName;
this.deviceRate = response.deviceRate;
this.deviceResolution = response.deviceResolution;
this.deviceSite = response.deviceSite;
this.deviceSubType = response.deviceSubType;
this.encodeFormat = response.encodeFormat;
this.frameRate = response.frameRate;
this.govLength = response.govLength;
this.latitude = response.latitude;
this.longitude = response.longitude;
this.OSDTimeEnable = response.OSDTimeEnable;
this.OSDTimeType = response.OSDTimeType;
this.OSDTimeX = response.OSDTimeX;
this.OSDTimeY = response.OSDTimeY;
this.password = response.password;
this.vendor = response.vendor;
}
/**
* AudioEnable.
*/
public Builder audioEnable(String audioEnable) {
this.putBodyParameter("AudioEnable", audioEnable);
this.audioEnable = audioEnable;
return this;
}
/**
* 设备安装地址
*/
public Builder deviceAddress(String deviceAddress) {
this.putBodyParameter("DeviceAddress", deviceAddress);
this.deviceAddress = deviceAddress;
return this;
}
/**
* DeviceDirection.
*/
public Builder deviceDirection(String deviceDirection) {
this.putBodyParameter("DeviceDirection", deviceDirection);
this.deviceDirection = deviceDirection;
return this;
}
/**
* 设备国标编码
*/
public Builder deviceId(String deviceId) {
this.putBodyParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
/**
* DeviceIp.
*/
public Builder deviceIp(String deviceIp) {
this.putBodyParameter("DeviceIp", deviceIp);
this.deviceIp = deviceIp;
return this;
}
/**
* DeviceModel.
*/
public Builder deviceModel(String deviceModel) {
this.putBodyParameter("DeviceModel", deviceModel);
this.deviceModel = deviceModel;
return this;
}
/**
* 设备名称
*/
public Builder deviceName(String deviceName) {
this.putBodyParameter("DeviceName", deviceName);
this.deviceName = deviceName;
return this;
}
/**
* DeviceRate.
*/
public Builder deviceRate(String deviceRate) {
this.putBodyParameter("DeviceRate", deviceRate);
this.deviceRate = deviceRate;
return this;
}
/**
* DeviceResolution.
*/
public Builder deviceResolution(String deviceResolution) {
this.putBodyParameter("DeviceResolution", deviceResolution);
this.deviceResolution = deviceResolution;
return this;
}
/**
* DeviceSite.
*/
public Builder deviceSite(String deviceSite) {
this.putBodyParameter("DeviceSite", deviceSite);
this.deviceSite = deviceSite;
return this;
}
/**
* DeviceSubType.
*/
public Builder deviceSubType(String deviceSubType) {
this.putBodyParameter("DeviceSubType", deviceSubType);
this.deviceSubType = deviceSubType;
return this;
}
/**
* EncodeFormat.
*/
public Builder encodeFormat(String encodeFormat) {
this.putBodyParameter("EncodeFormat", encodeFormat);
this.encodeFormat = encodeFormat;
return this;
}
/**
* FrameRate.
*/
public Builder frameRate(String frameRate) {
this.putBodyParameter("FrameRate", frameRate);
this.frameRate = frameRate;
return this;
}
/**
* GovLength.
*/
public Builder govLength(String govLength) {
this.putBodyParameter("GovLength", govLength);
this.govLength = govLength;
return this;
}
/**
* Latitude.
*/
public Builder latitude(String latitude) {
this.putBodyParameter("Latitude", latitude);
this.latitude = latitude;
return this;
}
/**
* Longitude.
*/
public Builder longitude(String longitude) {
this.putBodyParameter("Longitude", longitude);
this.longitude = longitude;
return this;
}
/**
* OSDTimeEnable.
*/
public Builder OSDTimeEnable(String OSDTimeEnable) {
this.putBodyParameter("OSDTimeEnable", OSDTimeEnable);
this.OSDTimeEnable = OSDTimeEnable;
return this;
}
/**
* OSDTimeType.
*/
public Builder OSDTimeType(String OSDTimeType) {
this.putBodyParameter("OSDTimeType", OSDTimeType);
this.OSDTimeType = OSDTimeType;
return this;
}
/**
* OSDTimeX.
*/
public Builder OSDTimeX(String OSDTimeX) {
this.putBodyParameter("OSDTimeX", OSDTimeX);
this.OSDTimeX = OSDTimeX;
return this;
}
/**
* OSDTimeY.
*/
public Builder OSDTimeY(String OSDTimeY) {
this.putBodyParameter("OSDTimeY", OSDTimeY);
this.OSDTimeY = OSDTimeY;
return this;
}
/**
* Password.
*/
public Builder password(String password) {
this.putBodyParameter("Password", password);
this.password = password;
return this;
}
/**
* Vendor.
*/
public Builder vendor(String vendor) {
this.putBodyParameter("Vendor", vendor);
this.vendor = vendor;
return this;
}
@Override
public ModifyDeviceRequest build() {
return new ModifyDeviceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ModifyDeviceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyDeviceResponse} extends {@link TeaModel}
*
* <p>ModifyDeviceResponse</p>
*/
public class ModifyDeviceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ModifyDeviceResponseBody body;
private ModifyDeviceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ModifyDeviceResponse 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 body
*/
public ModifyDeviceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ModifyDeviceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ModifyDeviceResponseBody body);
@Override
ModifyDeviceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ModifyDeviceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ModifyDeviceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ModifyDeviceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ModifyDeviceResponseBody body) {
this.body = body;
return this;
}
@Override
public ModifyDeviceResponse build() {
return new ModifyDeviceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ModifyDeviceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ModifyDeviceResponseBody} extends {@link TeaModel}
*
* <p>ModifyDeviceResponseBody</p>
*/
public class ModifyDeviceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ModifyDeviceResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ModifyDeviceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* 错误码
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* 错误码描述
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ModifyDeviceResponseBody build() {
return new ModifyDeviceResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/PeekNvrRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PeekNvrRequest} extends {@link RequestModel}
*
* <p>PeekNvrRequest</p>
*/
public class PeekNvrRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("DeviceId")
@Validation(required = true)
private String deviceId;
private PeekNvrRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.deviceId = builder.deviceId;
}
public static Builder builder() {
return new Builder();
}
public static PeekNvrRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
public static final class Builder extends Request.Builder<PeekNvrRequest, Builder> {
private String corpId;
private String deviceId;
private Builder() {
super();
}
private Builder(PeekNvrRequest response) {
super(response);
this.corpId = response.corpId;
this.deviceId = response.deviceId;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.putBodyParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
@Override
public PeekNvrRequest build() {
return new PeekNvrRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/PeekNvrResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PeekNvrResponse} extends {@link TeaModel}
*
* <p>PeekNvrResponse</p>
*/
public class PeekNvrResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private PeekNvrResponseBody body;
private PeekNvrResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static PeekNvrResponse 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 body
*/
public PeekNvrResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<PeekNvrResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(PeekNvrResponseBody body);
@Override
PeekNvrResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<PeekNvrResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private PeekNvrResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(PeekNvrResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(PeekNvrResponseBody body) {
this.body = body;
return this;
}
@Override
public PeekNvrResponse build() {
return new PeekNvrResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/PeekNvrResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link PeekNvrResponseBody} extends {@link TeaModel}
*
* <p>PeekNvrResponseBody</p>
*/
public class PeekNvrResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private PeekNvrResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static PeekNvrResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public PeekNvrResponseBody build() {
return new PeekNvrResponseBody(this);
}
}
public static class SubDeviceList extends TeaModel {
@NameInMap("AssociatedPlatform")
private String associatedPlatform;
@NameInMap("SubDeviceId")
private String subDeviceId;
@NameInMap("SubDeviceName")
private String subDeviceName;
@NameInMap("SubDeviceNum")
private String subDeviceNum;
@NameInMap("SubDeviceStatus")
private String subDeviceStatus;
private SubDeviceList(Builder builder) {
this.associatedPlatform = builder.associatedPlatform;
this.subDeviceId = builder.subDeviceId;
this.subDeviceName = builder.subDeviceName;
this.subDeviceNum = builder.subDeviceNum;
this.subDeviceStatus = builder.subDeviceStatus;
}
public static Builder builder() {
return new Builder();
}
public static SubDeviceList create() {
return builder().build();
}
/**
* @return associatedPlatform
*/
public String getAssociatedPlatform() {
return this.associatedPlatform;
}
/**
* @return subDeviceId
*/
public String getSubDeviceId() {
return this.subDeviceId;
}
/**
* @return subDeviceName
*/
public String getSubDeviceName() {
return this.subDeviceName;
}
/**
* @return subDeviceNum
*/
public String getSubDeviceNum() {
return this.subDeviceNum;
}
/**
* @return subDeviceStatus
*/
public String getSubDeviceStatus() {
return this.subDeviceStatus;
}
public static final class Builder {
private String associatedPlatform;
private String subDeviceId;
private String subDeviceName;
private String subDeviceNum;
private String subDeviceStatus;
/**
* AssociatedPlatform.
*/
public Builder associatedPlatform(String associatedPlatform) {
this.associatedPlatform = associatedPlatform;
return this;
}
/**
* SubDeviceId.
*/
public Builder subDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
return this;
}
/**
* SubDeviceName.
*/
public Builder subDeviceName(String subDeviceName) {
this.subDeviceName = subDeviceName;
return this;
}
/**
* SubDeviceNum.
*/
public Builder subDeviceNum(String subDeviceNum) {
this.subDeviceNum = subDeviceNum;
return this;
}
/**
* SubDeviceStatus.
*/
public Builder subDeviceStatus(String subDeviceStatus) {
this.subDeviceStatus = subDeviceStatus;
return this;
}
public SubDeviceList build() {
return new SubDeviceList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("IdleCount")
private Long idleCount;
@NameInMap("SubDeviceList")
private java.util.List < SubDeviceList> subDeviceList;
private Data(Builder builder) {
this.idleCount = builder.idleCount;
this.subDeviceList = builder.subDeviceList;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return idleCount
*/
public Long getIdleCount() {
return this.idleCount;
}
/**
* @return subDeviceList
*/
public java.util.List < SubDeviceList> getSubDeviceList() {
return this.subDeviceList;
}
public static final class Builder {
private Long idleCount;
private java.util.List < SubDeviceList> subDeviceList;
/**
* IdleCount.
*/
public Builder idleCount(Long idleCount) {
this.idleCount = idleCount;
return this;
}
/**
* SubDeviceList.
*/
public Builder subDeviceList(java.util.List < SubDeviceList> subDeviceList) {
this.subDeviceList = subDeviceList;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RaiseDevicesStorageRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RaiseDevicesStorageRequest} extends {@link RequestModel}
*
* <p>RaiseDevicesStorageRequest</p>
*/
public class RaiseDevicesStorageRequest extends Request {
@Body
@NameInMap("Json")
@Validation(required = true)
private String json;
private RaiseDevicesStorageRequest(Builder builder) {
super(builder);
this.json = builder.json;
}
public static Builder builder() {
return new Builder();
}
public static RaiseDevicesStorageRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return json
*/
public String getJson() {
return this.json;
}
public static final class Builder extends Request.Builder<RaiseDevicesStorageRequest, Builder> {
private String json;
private Builder() {
super();
}
private Builder(RaiseDevicesStorageRequest response) {
super(response);
this.json = response.json;
}
/**
* Json.
*/
public Builder json(String json) {
this.putBodyParameter("Json", json);
this.json = json;
return this;
}
@Override
public RaiseDevicesStorageRequest build() {
return new RaiseDevicesStorageRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RaiseDevicesStorageResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RaiseDevicesStorageResponse} extends {@link TeaModel}
*
* <p>RaiseDevicesStorageResponse</p>
*/
public class RaiseDevicesStorageResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RaiseDevicesStorageResponseBody body;
private RaiseDevicesStorageResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RaiseDevicesStorageResponse 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 body
*/
public RaiseDevicesStorageResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RaiseDevicesStorageResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RaiseDevicesStorageResponseBody body);
@Override
RaiseDevicesStorageResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RaiseDevicesStorageResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RaiseDevicesStorageResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RaiseDevicesStorageResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RaiseDevicesStorageResponseBody body) {
this.body = body;
return this;
}
@Override
public RaiseDevicesStorageResponse build() {
return new RaiseDevicesStorageResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RaiseDevicesStorageResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RaiseDevicesStorageResponseBody} extends {@link TeaModel}
*
* <p>RaiseDevicesStorageResponseBody</p>
*/
public class RaiseDevicesStorageResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Boolean data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private RaiseDevicesStorageResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static RaiseDevicesStorageResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Boolean data;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public RaiseDevicesStorageResponseBody build() {
return new RaiseDevicesStorageResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeFaceQualityRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeFaceQualityRequest} extends {@link RequestModel}
*
* <p>RecognizeFaceQualityRequest</p>
*/
public class RecognizeFaceQualityRequest extends Request {
@Body
@NameInMap("CorpId")
private String corpId;
@Body
@NameInMap("PicContent")
private String picContent;
@Body
@NameInMap("PicFormat")
private String picFormat;
@Body
@NameInMap("PicUrl")
private String picUrl;
private RecognizeFaceQualityRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.picContent = builder.picContent;
this.picFormat = builder.picFormat;
this.picUrl = builder.picUrl;
}
public static Builder builder() {
return new Builder();
}
public static RecognizeFaceQualityRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return picContent
*/
public String getPicContent() {
return this.picContent;
}
/**
* @return picFormat
*/
public String getPicFormat() {
return this.picFormat;
}
/**
* @return picUrl
*/
public String getPicUrl() {
return this.picUrl;
}
public static final class Builder extends Request.Builder<RecognizeFaceQualityRequest, Builder> {
private String corpId;
private String picContent;
private String picFormat;
private String picUrl;
private Builder() {
super();
}
private Builder(RecognizeFaceQualityRequest response) {
super(response);
this.corpId = response.corpId;
this.picContent = response.picContent;
this.picFormat = response.picFormat;
this.picUrl = response.picUrl;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* PicContent.
*/
public Builder picContent(String picContent) {
this.putBodyParameter("PicContent", picContent);
this.picContent = picContent;
return this;
}
/**
* PicFormat.
*/
public Builder picFormat(String picFormat) {
this.putBodyParameter("PicFormat", picFormat);
this.picFormat = picFormat;
return this;
}
/**
* PicUrl.
*/
public Builder picUrl(String picUrl) {
this.putBodyParameter("PicUrl", picUrl);
this.picUrl = picUrl;
return this;
}
@Override
public RecognizeFaceQualityRequest build() {
return new RecognizeFaceQualityRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeFaceQualityResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeFaceQualityResponse} extends {@link TeaModel}
*
* <p>RecognizeFaceQualityResponse</p>
*/
public class RecognizeFaceQualityResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RecognizeFaceQualityResponseBody body;
private RecognizeFaceQualityResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RecognizeFaceQualityResponse 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 body
*/
public RecognizeFaceQualityResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RecognizeFaceQualityResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RecognizeFaceQualityResponseBody body);
@Override
RecognizeFaceQualityResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RecognizeFaceQualityResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RecognizeFaceQualityResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RecognizeFaceQualityResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RecognizeFaceQualityResponseBody body) {
this.body = body;
return this;
}
@Override
public RecognizeFaceQualityResponse build() {
return new RecognizeFaceQualityResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeFaceQualityResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeFaceQualityResponseBody} extends {@link TeaModel}
*
* <p>RecognizeFaceQualityResponseBody</p>
*/
public class RecognizeFaceQualityResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private RecognizeFaceQualityResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static RecognizeFaceQualityResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public RecognizeFaceQualityResponseBody build() {
return new RecognizeFaceQualityResponseBody(this);
}
}
public static class Attributes extends TeaModel {
@NameInMap("FaceQuality")
private String faceQuality;
@NameInMap("FaceScore")
private String faceScore;
@NameInMap("FaceStyle")
private String faceStyle;
@NameInMap("LeftTopX")
private Integer leftTopX;
@NameInMap("LeftTopY")
private Integer leftTopY;
@NameInMap("RightBottomX")
private Integer rightBottomX;
@NameInMap("RightBottomY")
private Integer rightBottomY;
@NameInMap("TargetImageStoragePath")
private String targetImageStoragePath;
private Attributes(Builder builder) {
this.faceQuality = builder.faceQuality;
this.faceScore = builder.faceScore;
this.faceStyle = builder.faceStyle;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
this.targetImageStoragePath = builder.targetImageStoragePath;
}
public static Builder builder() {
return new Builder();
}
public static Attributes create() {
return builder().build();
}
/**
* @return faceQuality
*/
public String getFaceQuality() {
return this.faceQuality;
}
/**
* @return faceScore
*/
public String getFaceScore() {
return this.faceScore;
}
/**
* @return faceStyle
*/
public String getFaceStyle() {
return this.faceStyle;
}
/**
* @return leftTopX
*/
public Integer getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public Integer getLeftTopY() {
return this.leftTopY;
}
/**
* @return rightBottomX
*/
public Integer getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public Integer getRightBottomY() {
return this.rightBottomY;
}
/**
* @return targetImageStoragePath
*/
public String getTargetImageStoragePath() {
return this.targetImageStoragePath;
}
public static final class Builder {
private String faceQuality;
private String faceScore;
private String faceStyle;
private Integer leftTopX;
private Integer leftTopY;
private Integer rightBottomX;
private Integer rightBottomY;
private String targetImageStoragePath;
/**
* FaceQuality.
*/
public Builder faceQuality(String faceQuality) {
this.faceQuality = faceQuality;
return this;
}
/**
* FaceScore.
*/
public Builder faceScore(String faceScore) {
this.faceScore = faceScore;
return this;
}
/**
* FaceStyle.
*/
public Builder faceStyle(String faceStyle) {
this.faceStyle = faceStyle;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(Integer leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(Integer leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(Integer rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(Integer rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
/**
* TargetImageStoragePath.
*/
public Builder targetImageStoragePath(String targetImageStoragePath) {
this.targetImageStoragePath = targetImageStoragePath;
return this;
}
public Attributes build() {
return new Attributes(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("Attributes")
private Attributes attributes;
@NameInMap("Description")
private String description;
@NameInMap("QualityScore")
private String qualityScore;
private Data(Builder builder) {
this.attributes = builder.attributes;
this.description = builder.description;
this.qualityScore = builder.qualityScore;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return attributes
*/
public Attributes getAttributes() {
return this.attributes;
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return qualityScore
*/
public String getQualityScore() {
return this.qualityScore;
}
public static final class Builder {
private Attributes attributes;
private String description;
private String qualityScore;
/**
* Attributes.
*/
public Builder attributes(Attributes attributes) {
this.attributes = attributes;
return this;
}
/**
* Description.
*/
public Builder description(String description) {
this.description = description;
return this;
}
/**
* QualityScore.
*/
public Builder qualityScore(String qualityScore) {
this.qualityScore = qualityScore;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeImageRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeImageRequest} extends {@link RequestModel}
*
* <p>RecognizeImageRequest</p>
*/
public class RecognizeImageRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("PicContent")
private String picContent;
@Body
@NameInMap("PicFormat")
@Validation(required = true)
private String picFormat;
@Body
@NameInMap("PicUrl")
private String picUrl;
private RecognizeImageRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.picContent = builder.picContent;
this.picFormat = builder.picFormat;
this.picUrl = builder.picUrl;
}
public static Builder builder() {
return new Builder();
}
public static RecognizeImageRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return picContent
*/
public String getPicContent() {
return this.picContent;
}
/**
* @return picFormat
*/
public String getPicFormat() {
return this.picFormat;
}
/**
* @return picUrl
*/
public String getPicUrl() {
return this.picUrl;
}
public static final class Builder extends Request.Builder<RecognizeImageRequest, Builder> {
private String corpId;
private String picContent;
private String picFormat;
private String picUrl;
private Builder() {
super();
}
private Builder(RecognizeImageRequest response) {
super(response);
this.corpId = response.corpId;
this.picContent = response.picContent;
this.picFormat = response.picFormat;
this.picUrl = response.picUrl;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* PicContent.
*/
public Builder picContent(String picContent) {
this.putBodyParameter("PicContent", picContent);
this.picContent = picContent;
return this;
}
/**
* PicFormat.
*/
public Builder picFormat(String picFormat) {
this.putBodyParameter("PicFormat", picFormat);
this.picFormat = picFormat;
return this;
}
/**
* PicUrl.
*/
public Builder picUrl(String picUrl) {
this.putBodyParameter("PicUrl", picUrl);
this.picUrl = picUrl;
return this;
}
@Override
public RecognizeImageRequest build() {
return new RecognizeImageRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeImageResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeImageResponse} extends {@link TeaModel}
*
* <p>RecognizeImageResponse</p>
*/
public class RecognizeImageResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RecognizeImageResponseBody body;
private RecognizeImageResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RecognizeImageResponse 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 body
*/
public RecognizeImageResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RecognizeImageResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RecognizeImageResponseBody body);
@Override
RecognizeImageResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RecognizeImageResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RecognizeImageResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RecognizeImageResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RecognizeImageResponseBody body) {
this.body = body;
return this;
}
@Override
public RecognizeImageResponse build() {
return new RecognizeImageResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RecognizeImageResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RecognizeImageResponseBody} extends {@link TeaModel}
*
* <p>RecognizeImageResponseBody</p>
*/
public class RecognizeImageResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private RecognizeImageResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static RecognizeImageResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public RecognizeImageResponseBody build() {
return new RecognizeImageResponseBody(this);
}
}
public static class BodyList extends TeaModel {
@NameInMap("Feature")
private String feature;
@NameInMap("FileName")
private String fileName;
@NameInMap("ImageBaseSixFour")
private String imageBaseSixFour;
@NameInMap("LeftTopX")
private String leftTopX;
@NameInMap("LeftTopY")
private String leftTopY;
@NameInMap("LocalFeature")
private String localFeature;
@NameInMap("RespiratorColor")
private String respiratorColor;
@NameInMap("RightBottomX")
private String rightBottomX;
@NameInMap("RightBottomY")
private String rightBottomY;
private BodyList(Builder builder) {
this.feature = builder.feature;
this.fileName = builder.fileName;
this.imageBaseSixFour = builder.imageBaseSixFour;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.localFeature = builder.localFeature;
this.respiratorColor = builder.respiratorColor;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
}
public static Builder builder() {
return new Builder();
}
public static BodyList create() {
return builder().build();
}
/**
* @return feature
*/
public String getFeature() {
return this.feature;
}
/**
* @return fileName
*/
public String getFileName() {
return this.fileName;
}
/**
* @return imageBaseSixFour
*/
public String getImageBaseSixFour() {
return this.imageBaseSixFour;
}
/**
* @return leftTopX
*/
public String getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public String getLeftTopY() {
return this.leftTopY;
}
/**
* @return localFeature
*/
public String getLocalFeature() {
return this.localFeature;
}
/**
* @return respiratorColor
*/
public String getRespiratorColor() {
return this.respiratorColor;
}
/**
* @return rightBottomX
*/
public String getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public String getRightBottomY() {
return this.rightBottomY;
}
public static final class Builder {
private String feature;
private String fileName;
private String imageBaseSixFour;
private String leftTopX;
private String leftTopY;
private String localFeature;
private String respiratorColor;
private String rightBottomX;
private String rightBottomY;
/**
* Feature.
*/
public Builder feature(String feature) {
this.feature = feature;
return this;
}
/**
* FileName.
*/
public Builder fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* ImageBaseSixFour.
*/
public Builder imageBaseSixFour(String imageBaseSixFour) {
this.imageBaseSixFour = imageBaseSixFour;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(String leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(String leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* LocalFeature.
*/
public Builder localFeature(String localFeature) {
this.localFeature = localFeature;
return this;
}
/**
* RespiratorColor.
*/
public Builder respiratorColor(String respiratorColor) {
this.respiratorColor = respiratorColor;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(String rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(String rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
public BodyList build() {
return new BodyList(this);
}
}
}
public static class FaceList extends TeaModel {
@NameInMap("Feature")
private String feature;
@NameInMap("FileName")
private String fileName;
@NameInMap("ImageBaseSixFour")
private String imageBaseSixFour;
@NameInMap("KeyPointQuality")
private Float keyPointQuality;
@NameInMap("LeftTopX")
private String leftTopX;
@NameInMap("LeftTopY")
private String leftTopY;
@NameInMap("LocalFeature")
private String localFeature;
@NameInMap("Quality")
private Float quality;
@NameInMap("RespiratorColor")
private String respiratorColor;
@NameInMap("RightBottomX")
private String rightBottomX;
@NameInMap("RightBottomY")
private String rightBottomY;
private FaceList(Builder builder) {
this.feature = builder.feature;
this.fileName = builder.fileName;
this.imageBaseSixFour = builder.imageBaseSixFour;
this.keyPointQuality = builder.keyPointQuality;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.localFeature = builder.localFeature;
this.quality = builder.quality;
this.respiratorColor = builder.respiratorColor;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
}
public static Builder builder() {
return new Builder();
}
public static FaceList create() {
return builder().build();
}
/**
* @return feature
*/
public String getFeature() {
return this.feature;
}
/**
* @return fileName
*/
public String getFileName() {
return this.fileName;
}
/**
* @return imageBaseSixFour
*/
public String getImageBaseSixFour() {
return this.imageBaseSixFour;
}
/**
* @return keyPointQuality
*/
public Float getKeyPointQuality() {
return this.keyPointQuality;
}
/**
* @return leftTopX
*/
public String getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public String getLeftTopY() {
return this.leftTopY;
}
/**
* @return localFeature
*/
public String getLocalFeature() {
return this.localFeature;
}
/**
* @return quality
*/
public Float getQuality() {
return this.quality;
}
/**
* @return respiratorColor
*/
public String getRespiratorColor() {
return this.respiratorColor;
}
/**
* @return rightBottomX
*/
public String getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public String getRightBottomY() {
return this.rightBottomY;
}
public static final class Builder {
private String feature;
private String fileName;
private String imageBaseSixFour;
private Float keyPointQuality;
private String leftTopX;
private String leftTopY;
private String localFeature;
private Float quality;
private String respiratorColor;
private String rightBottomX;
private String rightBottomY;
/**
* Feature.
*/
public Builder feature(String feature) {
this.feature = feature;
return this;
}
/**
* FileName.
*/
public Builder fileName(String fileName) {
this.fileName = fileName;
return this;
}
/**
* ImageBaseSixFour.
*/
public Builder imageBaseSixFour(String imageBaseSixFour) {
this.imageBaseSixFour = imageBaseSixFour;
return this;
}
/**
* KeyPointQuality.
*/
public Builder keyPointQuality(Float keyPointQuality) {
this.keyPointQuality = keyPointQuality;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(String leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(String leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* LocalFeature.
*/
public Builder localFeature(String localFeature) {
this.localFeature = localFeature;
return this;
}
/**
* Quality.
*/
public Builder quality(Float quality) {
this.quality = quality;
return this;
}
/**
* RespiratorColor.
*/
public Builder respiratorColor(String respiratorColor) {
this.respiratorColor = respiratorColor;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(String rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(String rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
public FaceList build() {
return new FaceList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("BodyList")
private java.util.List < BodyList> bodyList;
@NameInMap("FaceList")
private java.util.List < FaceList> faceList;
private Data(Builder builder) {
this.bodyList = builder.bodyList;
this.faceList = builder.faceList;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return bodyList
*/
public java.util.List < BodyList> getBodyList() {
return this.bodyList;
}
/**
* @return faceList
*/
public java.util.List < FaceList> getFaceList() {
return this.faceList;
}
public static final class Builder {
private java.util.List < BodyList> bodyList;
private java.util.List < FaceList> faceList;
/**
* BodyList.
*/
public Builder bodyList(java.util.List < BodyList> bodyList) {
this.bodyList = bodyList;
return this;
}
/**
* FaceList.
*/
public Builder faceList(java.util.List < FaceList> faceList) {
this.faceList = faceList;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RegisterDeviceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RegisterDeviceRequest} extends {@link RequestModel}
*
* <p>RegisterDeviceRequest</p>
*/
public class RegisterDeviceRequest extends Request {
@Body
@NameInMap("DeviceId")
private String deviceId;
@Body
@NameInMap("DeviceSn")
@Validation(required = true)
private String deviceSn;
@Body
@NameInMap("DeviceTimeStamp")
@Validation(required = true)
private String deviceTimeStamp;
@Body
@NameInMap("ServerId")
private String serverId;
private RegisterDeviceRequest(Builder builder) {
super(builder);
this.deviceId = builder.deviceId;
this.deviceSn = builder.deviceSn;
this.deviceTimeStamp = builder.deviceTimeStamp;
this.serverId = builder.serverId;
}
public static Builder builder() {
return new Builder();
}
public static RegisterDeviceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return deviceSn
*/
public String getDeviceSn() {
return this.deviceSn;
}
/**
* @return deviceTimeStamp
*/
public String getDeviceTimeStamp() {
return this.deviceTimeStamp;
}
/**
* @return serverId
*/
public String getServerId() {
return this.serverId;
}
public static final class Builder extends Request.Builder<RegisterDeviceRequest, Builder> {
private String deviceId;
private String deviceSn;
private String deviceTimeStamp;
private String serverId;
private Builder() {
super();
}
private Builder(RegisterDeviceRequest response) {
super(response);
this.deviceId = response.deviceId;
this.deviceSn = response.deviceSn;
this.deviceTimeStamp = response.deviceTimeStamp;
this.serverId = response.serverId;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.putBodyParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
/**
* DeviceSn.
*/
public Builder deviceSn(String deviceSn) {
this.putBodyParameter("DeviceSn", deviceSn);
this.deviceSn = deviceSn;
return this;
}
/**
* DeviceTimeStamp.
*/
public Builder deviceTimeStamp(String deviceTimeStamp) {
this.putBodyParameter("DeviceTimeStamp", deviceTimeStamp);
this.deviceTimeStamp = deviceTimeStamp;
return this;
}
/**
* ServerId.
*/
public Builder serverId(String serverId) {
this.putBodyParameter("ServerId", serverId);
this.serverId = serverId;
return this;
}
@Override
public RegisterDeviceRequest build() {
return new RegisterDeviceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RegisterDeviceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RegisterDeviceResponse} extends {@link TeaModel}
*
* <p>RegisterDeviceResponse</p>
*/
public class RegisterDeviceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RegisterDeviceResponseBody body;
private RegisterDeviceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RegisterDeviceResponse 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 body
*/
public RegisterDeviceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RegisterDeviceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RegisterDeviceResponseBody body);
@Override
RegisterDeviceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RegisterDeviceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RegisterDeviceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RegisterDeviceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RegisterDeviceResponseBody body) {
this.body = body;
return this;
}
@Override
public RegisterDeviceResponse build() {
return new RegisterDeviceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RegisterDeviceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RegisterDeviceResponseBody} extends {@link TeaModel}
*
* <p>RegisterDeviceResponseBody</p>
*/
public class RegisterDeviceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("RetryInterval")
private String retryInterval;
private RegisterDeviceResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.retryInterval = builder.retryInterval;
}
public static Builder builder() {
return new Builder();
}
public static RegisterDeviceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return retryInterval
*/
public String getRetryInterval() {
return this.retryInterval;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private String retryInterval;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* RetryInterval.
*/
public Builder retryInterval(String retryInterval) {
this.retryInterval = retryInterval;
return this;
}
public RegisterDeviceResponseBody build() {
return new RegisterDeviceResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveCameraForInstanceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveCameraForInstanceRequest} extends {@link RequestModel}
*
* <p>RemoveCameraForInstanceRequest</p>
*/
public class RemoveCameraForInstanceRequest extends Request {
@Body
@NameInMap("CameraIds")
@Validation(required = true)
private java.util.List < String > cameraIds;
@Body
@NameInMap("InstanceId")
@Validation(required = true)
private String instanceId;
private RemoveCameraForInstanceRequest(Builder builder) {
super(builder);
this.cameraIds = builder.cameraIds;
this.instanceId = builder.instanceId;
}
public static Builder builder() {
return new Builder();
}
public static RemoveCameraForInstanceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return cameraIds
*/
public java.util.List < String > getCameraIds() {
return this.cameraIds;
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
public static final class Builder extends Request.Builder<RemoveCameraForInstanceRequest, Builder> {
private java.util.List < String > cameraIds;
private String instanceId;
private Builder() {
super();
}
private Builder(RemoveCameraForInstanceRequest response) {
super(response);
this.cameraIds = response.cameraIds;
this.instanceId = response.instanceId;
}
/**
* 设备ID列表
*/
public Builder cameraIds(java.util.List < String > cameraIds) {
this.putBodyParameter("CameraIds", cameraIds);
this.cameraIds = cameraIds;
return this;
}
/**
* 实例id
*/
public Builder instanceId(String instanceId) {
this.putBodyParameter("InstanceId", instanceId);
this.instanceId = instanceId;
return this;
}
@Override
public RemoveCameraForInstanceRequest build() {
return new RemoveCameraForInstanceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveCameraForInstanceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveCameraForInstanceResponse} extends {@link TeaModel}
*
* <p>RemoveCameraForInstanceResponse</p>
*/
public class RemoveCameraForInstanceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RemoveCameraForInstanceResponseBody body;
private RemoveCameraForInstanceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RemoveCameraForInstanceResponse 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 body
*/
public RemoveCameraForInstanceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RemoveCameraForInstanceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RemoveCameraForInstanceResponseBody body);
@Override
RemoveCameraForInstanceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RemoveCameraForInstanceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RemoveCameraForInstanceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RemoveCameraForInstanceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RemoveCameraForInstanceResponseBody body) {
this.body = body;
return this;
}
@Override
public RemoveCameraForInstanceResponse build() {
return new RemoveCameraForInstanceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveCameraForInstanceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveCameraForInstanceResponseBody} extends {@link TeaModel}
*
* <p>RemoveCameraForInstanceResponseBody</p>
*/
public class RemoveCameraForInstanceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private RemoveCameraForInstanceResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static RemoveCameraForInstanceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* code码
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* 返回结果消息
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public RemoveCameraForInstanceResponseBody build() {
return new RemoveCameraForInstanceResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveWatchItemsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveWatchItemsRequest} extends {@link RequestModel}
*
* <p>RemoveWatchItemsRequest</p>
*/
public class RemoveWatchItemsRequest extends Request {
@Body
@NameInMap("WatchItemIds")
@Validation(required = true)
private String watchItemIds;
@Body
@NameInMap("WatchPolicyId")
@Validation(required = true)
private String watchPolicyId;
private RemoveWatchItemsRequest(Builder builder) {
super(builder);
this.watchItemIds = builder.watchItemIds;
this.watchPolicyId = builder.watchPolicyId;
}
public static Builder builder() {
return new Builder();
}
public static RemoveWatchItemsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return watchItemIds
*/
public String getWatchItemIds() {
return this.watchItemIds;
}
/**
* @return watchPolicyId
*/
public String getWatchPolicyId() {
return this.watchPolicyId;
}
public static final class Builder extends Request.Builder<RemoveWatchItemsRequest, Builder> {
private String watchItemIds;
private String watchPolicyId;
private Builder() {
super();
}
private Builder(RemoveWatchItemsRequest response) {
super(response);
this.watchItemIds = response.watchItemIds;
this.watchPolicyId = response.watchPolicyId;
}
/**
* WatchItemIds.
*/
public Builder watchItemIds(String watchItemIds) {
this.putBodyParameter("WatchItemIds", watchItemIds);
this.watchItemIds = watchItemIds;
return this;
}
/**
* WatchPolicyId.
*/
public Builder watchPolicyId(String watchPolicyId) {
this.putBodyParameter("WatchPolicyId", watchPolicyId);
this.watchPolicyId = watchPolicyId;
return this;
}
@Override
public RemoveWatchItemsRequest build() {
return new RemoveWatchItemsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveWatchItemsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveWatchItemsResponse} extends {@link TeaModel}
*
* <p>RemoveWatchItemsResponse</p>
*/
public class RemoveWatchItemsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private RemoveWatchItemsResponseBody body;
private RemoveWatchItemsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static RemoveWatchItemsResponse 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 body
*/
public RemoveWatchItemsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<RemoveWatchItemsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(RemoveWatchItemsResponseBody body);
@Override
RemoveWatchItemsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<RemoveWatchItemsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private RemoveWatchItemsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(RemoveWatchItemsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(RemoveWatchItemsResponseBody body) {
this.body = body;
return this;
}
@Override
public RemoveWatchItemsResponse build() {
return new RemoveWatchItemsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/RemoveWatchItemsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link RemoveWatchItemsResponseBody} extends {@link TeaModel}
*
* <p>RemoveWatchItemsResponseBody</p>
*/
public class RemoveWatchItemsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private RemoveWatchItemsResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static RemoveWatchItemsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public RemoveWatchItemsResponseBody build() {
return new RemoveWatchItemsResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("DeletedItemIds")
private String deletedItemIds;
@NameInMap("FailedItemIds")
private String failedItemIds;
private Data(Builder builder) {
this.deletedItemIds = builder.deletedItemIds;
this.failedItemIds = builder.failedItemIds;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return deletedItemIds
*/
public String getDeletedItemIds() {
return this.deletedItemIds;
}
/**
* @return failedItemIds
*/
public String getFailedItemIds() {
return this.failedItemIds;
}
public static final class Builder {
private String deletedItemIds;
private String failedItemIds;
/**
* DeletedItemIds.
*/
public Builder deletedItemIds(String deletedItemIds) {
this.deletedItemIds = deletedItemIds;
return this;
}
/**
* FailedItemIds.
*/
public Builder failedItemIds(String failedItemIds) {
this.failedItemIds = failedItemIds;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SaveVideoSummaryTaskVideoRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SaveVideoSummaryTaskVideoRequest} extends {@link RequestModel}
*
* <p>SaveVideoSummaryTaskVideoRequest</p>
*/
public class SaveVideoSummaryTaskVideoRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("SaveVideo")
@Validation(required = true)
private Boolean saveVideo;
@Body
@NameInMap("TaskId")
@Validation(required = true, minimum = 1)
private Long taskId;
private SaveVideoSummaryTaskVideoRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.saveVideo = builder.saveVideo;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static SaveVideoSummaryTaskVideoRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return saveVideo
*/
public Boolean getSaveVideo() {
return this.saveVideo;
}
/**
* @return taskId
*/
public Long getTaskId() {
return this.taskId;
}
public static final class Builder extends Request.Builder<SaveVideoSummaryTaskVideoRequest, Builder> {
private String corpId;
private Boolean saveVideo;
private Long taskId;
private Builder() {
super();
}
private Builder(SaveVideoSummaryTaskVideoRequest response) {
super(response);
this.corpId = response.corpId;
this.saveVideo = response.saveVideo;
this.taskId = response.taskId;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* SaveVideo.
*/
public Builder saveVideo(Boolean saveVideo) {
this.putBodyParameter("SaveVideo", saveVideo);
this.saveVideo = saveVideo;
return this;
}
/**
* TaskId.
*/
public Builder taskId(Long taskId) {
this.putBodyParameter("TaskId", taskId);
this.taskId = taskId;
return this;
}
@Override
public SaveVideoSummaryTaskVideoRequest build() {
return new SaveVideoSummaryTaskVideoRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SaveVideoSummaryTaskVideoResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SaveVideoSummaryTaskVideoResponse} extends {@link TeaModel}
*
* <p>SaveVideoSummaryTaskVideoResponse</p>
*/
public class SaveVideoSummaryTaskVideoResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SaveVideoSummaryTaskVideoResponseBody body;
private SaveVideoSummaryTaskVideoResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SaveVideoSummaryTaskVideoResponse 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 body
*/
public SaveVideoSummaryTaskVideoResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SaveVideoSummaryTaskVideoResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SaveVideoSummaryTaskVideoResponseBody body);
@Override
SaveVideoSummaryTaskVideoResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SaveVideoSummaryTaskVideoResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SaveVideoSummaryTaskVideoResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SaveVideoSummaryTaskVideoResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SaveVideoSummaryTaskVideoResponseBody body) {
this.body = body;
return this;
}
@Override
public SaveVideoSummaryTaskVideoResponse build() {
return new SaveVideoSummaryTaskVideoResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SaveVideoSummaryTaskVideoResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SaveVideoSummaryTaskVideoResponseBody} extends {@link TeaModel}
*
* <p>SaveVideoSummaryTaskVideoResponseBody</p>
*/
public class SaveVideoSummaryTaskVideoResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private String data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SaveVideoSummaryTaskVideoResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SaveVideoSummaryTaskVideoResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SaveVideoSummaryTaskVideoResponseBody build() {
return new SaveVideoSummaryTaskVideoResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ScanSubDeviceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ScanSubDeviceRequest} extends {@link RequestModel}
*
* <p>ScanSubDeviceRequest</p>
*/
public class ScanSubDeviceRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("DeviceId")
@Validation(required = true)
private String deviceId;
private ScanSubDeviceRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.deviceId = builder.deviceId;
}
public static Builder builder() {
return new Builder();
}
public static ScanSubDeviceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
public static final class Builder extends Request.Builder<ScanSubDeviceRequest, Builder> {
private String corpId;
private String deviceId;
private Builder() {
super();
}
private Builder(ScanSubDeviceRequest response) {
super(response);
this.corpId = response.corpId;
this.deviceId = response.deviceId;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.putBodyParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
@Override
public ScanSubDeviceRequest build() {
return new ScanSubDeviceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ScanSubDeviceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ScanSubDeviceResponse} extends {@link TeaModel}
*
* <p>ScanSubDeviceResponse</p>
*/
public class ScanSubDeviceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private ScanSubDeviceResponseBody body;
private ScanSubDeviceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static ScanSubDeviceResponse 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 body
*/
public ScanSubDeviceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<ScanSubDeviceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(ScanSubDeviceResponseBody body);
@Override
ScanSubDeviceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<ScanSubDeviceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private ScanSubDeviceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(ScanSubDeviceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(ScanSubDeviceResponseBody body) {
this.body = body;
return this;
}
@Override
public ScanSubDeviceResponse build() {
return new ScanSubDeviceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/ScanSubDeviceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link ScanSubDeviceResponseBody} extends {@link TeaModel}
*
* <p>ScanSubDeviceResponseBody</p>
*/
public class ScanSubDeviceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private ScanSubDeviceResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static ScanSubDeviceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public ScanSubDeviceResponseBody build() {
return new ScanSubDeviceResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchBodyRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchBodyRequest} extends {@link RequestModel}
*
* <p>SearchBodyRequest</p>
*/
public class SearchBodyRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("EndTimeStamp")
@Validation(required = true)
private Long endTimeStamp;
@Body
@NameInMap("GbId")
private String gbId;
@Body
@NameInMap("OptionList")
private java.util.Map < String, ? > optionList;
@Body
@NameInMap("PageNo")
@Validation(required = true)
private Integer pageNo;
@Body
@NameInMap("PageSize")
@Validation(required = true)
private Integer pageSize;
@Body
@NameInMap("StartTimeStamp")
@Validation(required = true)
private Long startTimeStamp;
private SearchBodyRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.endTimeStamp = builder.endTimeStamp;
this.gbId = builder.gbId;
this.optionList = builder.optionList;
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.startTimeStamp = builder.startTimeStamp;
}
public static Builder builder() {
return new Builder();
}
public static SearchBodyRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return endTimeStamp
*/
public Long getEndTimeStamp() {
return this.endTimeStamp;
}
/**
* @return gbId
*/
public String getGbId() {
return this.gbId;
}
/**
* @return optionList
*/
public java.util.Map < String, ? > getOptionList() {
return this.optionList;
}
/**
* @return pageNo
*/
public Integer getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return startTimeStamp
*/
public Long getStartTimeStamp() {
return this.startTimeStamp;
}
public static final class Builder extends Request.Builder<SearchBodyRequest, Builder> {
private String corpId;
private Long endTimeStamp;
private String gbId;
private java.util.Map < String, ? > optionList;
private Integer pageNo;
private Integer pageSize;
private Long startTimeStamp;
private Builder() {
super();
}
private Builder(SearchBodyRequest response) {
super(response);
this.corpId = response.corpId;
this.endTimeStamp = response.endTimeStamp;
this.gbId = response.gbId;
this.optionList = response.optionList;
this.pageNo = response.pageNo;
this.pageSize = response.pageSize;
this.startTimeStamp = response.startTimeStamp;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* EndTimeStamp.
*/
public Builder endTimeStamp(Long endTimeStamp) {
this.putBodyParameter("EndTimeStamp", endTimeStamp);
this.endTimeStamp = endTimeStamp;
return this;
}
/**
* GbId.
*/
public Builder gbId(String gbId) {
this.putBodyParameter("GbId", gbId);
this.gbId = gbId;
return this;
}
/**
* OptionList.
*/
public Builder optionList(java.util.Map < String, ? > optionList) {
this.putBodyParameter("OptionList", optionList);
this.optionList = optionList;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(Integer pageNo) {
this.putBodyParameter("PageNo", pageNo);
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* StartTimeStamp.
*/
public Builder startTimeStamp(Long startTimeStamp) {
this.putBodyParameter("StartTimeStamp", startTimeStamp);
this.startTimeStamp = startTimeStamp;
return this;
}
@Override
public SearchBodyRequest build() {
return new SearchBodyRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchBodyResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchBodyResponse} extends {@link TeaModel}
*
* <p>SearchBodyResponse</p>
*/
public class SearchBodyResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SearchBodyResponseBody body;
private SearchBodyResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SearchBodyResponse 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 body
*/
public SearchBodyResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SearchBodyResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SearchBodyResponseBody body);
@Override
SearchBodyResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SearchBodyResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SearchBodyResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SearchBodyResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SearchBodyResponseBody body) {
this.body = body;
return this;
}
@Override
public SearchBodyResponse build() {
return new SearchBodyResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchBodyResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchBodyResponseBody} extends {@link TeaModel}
*
* <p>SearchBodyResponseBody</p>
*/
public class SearchBodyResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SearchBodyResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SearchBodyResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SearchBodyResponseBody build() {
return new SearchBodyResponseBody(this);
}
}
public static class Records extends TeaModel {
@NameInMap("GbId")
private String gbId;
@NameInMap("ImageUrl")
private String imageUrl;
@NameInMap("LeftTopX")
private Float leftTopX;
@NameInMap("LeftTopY")
private Float leftTopY;
@NameInMap("RightBottomX")
private Float rightBottomX;
@NameInMap("RightBottomY")
private Float rightBottomY;
@NameInMap("Score")
private Float score;
@NameInMap("TargetImageUrl")
private String targetImageUrl;
private Records(Builder builder) {
this.gbId = builder.gbId;
this.imageUrl = builder.imageUrl;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
this.score = builder.score;
this.targetImageUrl = builder.targetImageUrl;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return gbId
*/
public String getGbId() {
return this.gbId;
}
/**
* @return imageUrl
*/
public String getImageUrl() {
return this.imageUrl;
}
/**
* @return leftTopX
*/
public Float getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public Float getLeftTopY() {
return this.leftTopY;
}
/**
* @return rightBottomX
*/
public Float getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public Float getRightBottomY() {
return this.rightBottomY;
}
/**
* @return score
*/
public Float getScore() {
return this.score;
}
/**
* @return targetImageUrl
*/
public String getTargetImageUrl() {
return this.targetImageUrl;
}
public static final class Builder {
private String gbId;
private String imageUrl;
private Float leftTopX;
private Float leftTopY;
private Float rightBottomX;
private Float rightBottomY;
private Float score;
private String targetImageUrl;
/**
* GbId.
*/
public Builder gbId(String gbId) {
this.gbId = gbId;
return this;
}
/**
* ImageUrl.
*/
public Builder imageUrl(String imageUrl) {
this.imageUrl = imageUrl;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(Float leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(Float leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(Float rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(Float rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
/**
* Score.
*/
public Builder score(Float score) {
this.score = score;
return this;
}
/**
* TargetImageUrl.
*/
public Builder targetImageUrl(String targetImageUrl) {
this.targetImageUrl = targetImageUrl;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNo")
private Integer pageNo;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("TotalCount")
private Integer totalCount;
@NameInMap("TotalPage")
private Integer totalPage;
private Data(Builder builder) {
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.totalCount = builder.totalCount;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNo
*/
public Integer getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Integer pageNo;
private Integer pageSize;
private java.util.List < Records> records;
private Integer totalCount;
private Integer totalPage;
/**
* 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 < Records> records) {
this.records = records;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TotalPage.
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchFaceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchFaceRequest} extends {@link RequestModel}
*
* <p>SearchFaceRequest</p>
*/
public class SearchFaceRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("EndTimeStamp")
@Validation(required = true)
private Long endTimeStamp;
@Body
@NameInMap("GbId")
private String gbId;
@Body
@NameInMap("OptionList")
private java.util.Map < String, ? > optionList;
@Body
@NameInMap("PageNo")
@Validation(required = true)
private Integer pageNo;
@Body
@NameInMap("PageSize")
@Validation(required = true)
private Integer pageSize;
@Body
@NameInMap("StartTimeStamp")
@Validation(required = true)
private Long startTimeStamp;
private SearchFaceRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.endTimeStamp = builder.endTimeStamp;
this.gbId = builder.gbId;
this.optionList = builder.optionList;
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.startTimeStamp = builder.startTimeStamp;
}
public static Builder builder() {
return new Builder();
}
public static SearchFaceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return endTimeStamp
*/
public Long getEndTimeStamp() {
return this.endTimeStamp;
}
/**
* @return gbId
*/
public String getGbId() {
return this.gbId;
}
/**
* @return optionList
*/
public java.util.Map < String, ? > getOptionList() {
return this.optionList;
}
/**
* @return pageNo
*/
public Integer getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return startTimeStamp
*/
public Long getStartTimeStamp() {
return this.startTimeStamp;
}
public static final class Builder extends Request.Builder<SearchFaceRequest, Builder> {
private String corpId;
private Long endTimeStamp;
private String gbId;
private java.util.Map < String, ? > optionList;
private Integer pageNo;
private Integer pageSize;
private Long startTimeStamp;
private Builder() {
super();
}
private Builder(SearchFaceRequest response) {
super(response);
this.corpId = response.corpId;
this.endTimeStamp = response.endTimeStamp;
this.gbId = response.gbId;
this.optionList = response.optionList;
this.pageNo = response.pageNo;
this.pageSize = response.pageSize;
this.startTimeStamp = response.startTimeStamp;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* EndTimeStamp.
*/
public Builder endTimeStamp(Long endTimeStamp) {
this.putBodyParameter("EndTimeStamp", endTimeStamp);
this.endTimeStamp = endTimeStamp;
return this;
}
/**
* GbId.
*/
public Builder gbId(String gbId) {
this.putBodyParameter("GbId", gbId);
this.gbId = gbId;
return this;
}
/**
* OptionList.
*/
public Builder optionList(java.util.Map < String, ? > optionList) {
this.putBodyParameter("OptionList", optionList);
this.optionList = optionList;
return this;
}
/**
* PageNo.
*/
public Builder pageNo(Integer pageNo) {
this.putBodyParameter("PageNo", pageNo);
this.pageNo = pageNo;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* StartTimeStamp.
*/
public Builder startTimeStamp(Long startTimeStamp) {
this.putBodyParameter("StartTimeStamp", startTimeStamp);
this.startTimeStamp = startTimeStamp;
return this;
}
@Override
public SearchFaceRequest build() {
return new SearchFaceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchFaceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchFaceResponse} extends {@link TeaModel}
*
* <p>SearchFaceResponse</p>
*/
public class SearchFaceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SearchFaceResponseBody body;
private SearchFaceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SearchFaceResponse 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 body
*/
public SearchFaceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SearchFaceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SearchFaceResponseBody body);
@Override
SearchFaceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SearchFaceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SearchFaceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SearchFaceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SearchFaceResponseBody body) {
this.body = body;
return this;
}
@Override
public SearchFaceResponse build() {
return new SearchFaceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchFaceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchFaceResponseBody} extends {@link TeaModel}
*
* <p>SearchFaceResponseBody</p>
*/
public class SearchFaceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SearchFaceResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SearchFaceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SearchFaceResponseBody build() {
return new SearchFaceResponseBody(this);
}
}
public static class Records extends TeaModel {
@NameInMap("GbId")
private String gbId;
@NameInMap("ImageUrl")
private String imageUrl;
@NameInMap("LeftTopX")
private Float leftTopX;
@NameInMap("LeftTopY")
private Float leftTopY;
@NameInMap("MatchSuggestion")
private String matchSuggestion;
@NameInMap("RightBottomX")
private Float rightBottomX;
@NameInMap("RightBottomY")
private Float rightBottomY;
@NameInMap("Score")
private Float score;
@NameInMap("SourceId")
private String sourceId;
@NameInMap("TargetImageUrl")
private String targetImageUrl;
private Records(Builder builder) {
this.gbId = builder.gbId;
this.imageUrl = builder.imageUrl;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.matchSuggestion = builder.matchSuggestion;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
this.score = builder.score;
this.sourceId = builder.sourceId;
this.targetImageUrl = builder.targetImageUrl;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return gbId
*/
public String getGbId() {
return this.gbId;
}
/**
* @return imageUrl
*/
public String getImageUrl() {
return this.imageUrl;
}
/**
* @return leftTopX
*/
public Float getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public Float getLeftTopY() {
return this.leftTopY;
}
/**
* @return matchSuggestion
*/
public String getMatchSuggestion() {
return this.matchSuggestion;
}
/**
* @return rightBottomX
*/
public Float getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public Float getRightBottomY() {
return this.rightBottomY;
}
/**
* @return score
*/
public Float getScore() {
return this.score;
}
/**
* @return sourceId
*/
public String getSourceId() {
return this.sourceId;
}
/**
* @return targetImageUrl
*/
public String getTargetImageUrl() {
return this.targetImageUrl;
}
public static final class Builder {
private String gbId;
private String imageUrl;
private Float leftTopX;
private Float leftTopY;
private String matchSuggestion;
private Float rightBottomX;
private Float rightBottomY;
private Float score;
private String sourceId;
private String targetImageUrl;
/**
* GbId.
*/
public Builder gbId(String gbId) {
this.gbId = gbId;
return this;
}
/**
* ImageUrl.
*/
public Builder imageUrl(String imageUrl) {
this.imageUrl = imageUrl;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(Float leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(Float leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* MatchSuggestion.
*/
public Builder matchSuggestion(String matchSuggestion) {
this.matchSuggestion = matchSuggestion;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(Float rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(Float rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
/**
* Score.
*/
public Builder score(Float score) {
this.score = score;
return this;
}
/**
* SourceId.
*/
public Builder sourceId(String sourceId) {
this.sourceId = sourceId;
return this;
}
/**
* TargetImageUrl.
*/
public Builder targetImageUrl(String targetImageUrl) {
this.targetImageUrl = targetImageUrl;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNo")
private Integer pageNo;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("TotalCount")
private Integer totalCount;
@NameInMap("TotalPage")
private Integer totalPage;
private Data(Builder builder) {
this.pageNo = builder.pageNo;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.totalCount = builder.totalCount;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNo
*/
public Integer getPageNo() {
return this.pageNo;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Integer pageNo;
private Integer pageSize;
private java.util.List < Records> records;
private Integer totalCount;
private Integer totalPage;
/**
* 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 < Records> records) {
this.records = records;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TotalPage.
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchObjectRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchObjectRequest} extends {@link RequestModel}
*
* <p>SearchObjectRequest</p>
*/
public class SearchObjectRequest extends Request {
@Body
@NameInMap("AlgorithmType")
private String algorithmType;
@Body
@NameInMap("Conditions")
private java.util.Map < String, ? > conditions;
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("DeviceList")
private java.util.Map < String, ? > deviceList;
@Body
@NameInMap("EndTime")
@Validation(required = true)
private Long endTime;
@Body
@NameInMap("ImagePath")
private java.util.Map < String, ? > imagePath;
@Body
@NameInMap("ObjectType")
@Validation(required = true)
private String objectType;
@Body
@NameInMap("PageNumber")
@Validation(required = true, maximum = 100000)
private Integer pageNumber;
@Body
@NameInMap("PageSize")
@Validation(required = true, maximum = 10000)
private Integer pageSize;
@Body
@NameInMap("PicUrl")
private String picUrl;
@Body
@NameInMap("StartTime")
@Validation(required = true)
private Long startTime;
private SearchObjectRequest(Builder builder) {
super(builder);
this.algorithmType = builder.algorithmType;
this.conditions = builder.conditions;
this.corpId = builder.corpId;
this.deviceList = builder.deviceList;
this.endTime = builder.endTime;
this.imagePath = builder.imagePath;
this.objectType = builder.objectType;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.picUrl = builder.picUrl;
this.startTime = builder.startTime;
}
public static Builder builder() {
return new Builder();
}
public static SearchObjectRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return algorithmType
*/
public String getAlgorithmType() {
return this.algorithmType;
}
/**
* @return conditions
*/
public java.util.Map < String, ? > getConditions() {
return this.conditions;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return deviceList
*/
public java.util.Map < String, ? > getDeviceList() {
return this.deviceList;
}
/**
* @return endTime
*/
public Long getEndTime() {
return this.endTime;
}
/**
* @return imagePath
*/
public java.util.Map < String, ? > getImagePath() {
return this.imagePath;
}
/**
* @return objectType
*/
public String getObjectType() {
return this.objectType;
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return picUrl
*/
public String getPicUrl() {
return this.picUrl;
}
/**
* @return startTime
*/
public Long getStartTime() {
return this.startTime;
}
public static final class Builder extends Request.Builder<SearchObjectRequest, Builder> {
private String algorithmType;
private java.util.Map < String, ? > conditions;
private String corpId;
private java.util.Map < String, ? > deviceList;
private Long endTime;
private java.util.Map < String, ? > imagePath;
private String objectType;
private Integer pageNumber;
private Integer pageSize;
private String picUrl;
private Long startTime;
private Builder() {
super();
}
private Builder(SearchObjectRequest response) {
super(response);
this.algorithmType = response.algorithmType;
this.conditions = response.conditions;
this.corpId = response.corpId;
this.deviceList = response.deviceList;
this.endTime = response.endTime;
this.imagePath = response.imagePath;
this.objectType = response.objectType;
this.pageNumber = response.pageNumber;
this.pageSize = response.pageSize;
this.picUrl = response.picUrl;
this.startTime = response.startTime;
}
/**
* AlgorithmType.
*/
public Builder algorithmType(String algorithmType) {
this.putBodyParameter("AlgorithmType", algorithmType);
this.algorithmType = algorithmType;
return this;
}
/**
* Conditions.
*/
public Builder conditions(java.util.Map < String, ? > conditions) {
this.putBodyParameter("Conditions", conditions);
this.conditions = conditions;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DeviceList.
*/
public Builder deviceList(java.util.Map < String, ? > deviceList) {
this.putBodyParameter("DeviceList", deviceList);
this.deviceList = deviceList;
return this;
}
/**
* EndTime.
*/
public Builder endTime(Long endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* ImagePath.
*/
public Builder imagePath(java.util.Map < String, ? > imagePath) {
this.putBodyParameter("ImagePath", imagePath);
this.imagePath = imagePath;
return this;
}
/**
* ObjectType.
*/
public Builder objectType(String objectType) {
this.putBodyParameter("ObjectType", objectType);
this.objectType = objectType;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.putBodyParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* PicUrl.
*/
public Builder picUrl(String picUrl) {
this.putBodyParameter("PicUrl", picUrl);
this.picUrl = picUrl;
return this;
}
/**
* StartTime.
*/
public Builder startTime(Long startTime) {
this.putBodyParameter("StartTime", startTime);
this.startTime = startTime;
return this;
}
@Override
public SearchObjectRequest build() {
return new SearchObjectRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchObjectResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchObjectResponse} extends {@link TeaModel}
*
* <p>SearchObjectResponse</p>
*/
public class SearchObjectResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SearchObjectResponseBody body;
private SearchObjectResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SearchObjectResponse 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 body
*/
public SearchObjectResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SearchObjectResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SearchObjectResponseBody body);
@Override
SearchObjectResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SearchObjectResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SearchObjectResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SearchObjectResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SearchObjectResponseBody body) {
this.body = body;
return this;
}
@Override
public SearchObjectResponse build() {
return new SearchObjectResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchObjectResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchObjectResponseBody} extends {@link TeaModel}
*
* <p>SearchObjectResponseBody</p>
*/
public class SearchObjectResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SearchObjectResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SearchObjectResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SearchObjectResponseBody build() {
return new SearchObjectResponseBody(this);
}
}
public static class Records extends TeaModel {
@NameInMap("CompareResult")
private String compareResult;
@NameInMap("DeviceID")
private String deviceID;
@NameInMap("LeftTopX")
private Integer leftTopX;
@NameInMap("LeftTopY")
private Integer leftTopY;
@NameInMap("RightBtmX")
private Integer rightBtmX;
@NameInMap("RightBtmY")
private Integer rightBtmY;
@NameInMap("Score")
private Float score;
@NameInMap("ShotTime")
private Long shotTime;
@NameInMap("SourceID")
private String sourceID;
@NameInMap("SourceImagePath")
private String sourceImagePath;
@NameInMap("SourceImageUrl")
private String sourceImageUrl;
@NameInMap("TargetImagePath")
private String targetImagePath;
@NameInMap("TargetImageUrl")
private String targetImageUrl;
private Records(Builder builder) {
this.compareResult = builder.compareResult;
this.deviceID = builder.deviceID;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.rightBtmX = builder.rightBtmX;
this.rightBtmY = builder.rightBtmY;
this.score = builder.score;
this.shotTime = builder.shotTime;
this.sourceID = builder.sourceID;
this.sourceImagePath = builder.sourceImagePath;
this.sourceImageUrl = builder.sourceImageUrl;
this.targetImagePath = builder.targetImagePath;
this.targetImageUrl = builder.targetImageUrl;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return compareResult
*/
public String getCompareResult() {
return this.compareResult;
}
/**
* @return deviceID
*/
public String getDeviceID() {
return this.deviceID;
}
/**
* @return leftTopX
*/
public Integer getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public Integer getLeftTopY() {
return this.leftTopY;
}
/**
* @return rightBtmX
*/
public Integer getRightBtmX() {
return this.rightBtmX;
}
/**
* @return rightBtmY
*/
public Integer getRightBtmY() {
return this.rightBtmY;
}
/**
* @return score
*/
public Float getScore() {
return this.score;
}
/**
* @return shotTime
*/
public Long getShotTime() {
return this.shotTime;
}
/**
* @return sourceID
*/
public String getSourceID() {
return this.sourceID;
}
/**
* @return sourceImagePath
*/
public String getSourceImagePath() {
return this.sourceImagePath;
}
/**
* @return sourceImageUrl
*/
public String getSourceImageUrl() {
return this.sourceImageUrl;
}
/**
* @return targetImagePath
*/
public String getTargetImagePath() {
return this.targetImagePath;
}
/**
* @return targetImageUrl
*/
public String getTargetImageUrl() {
return this.targetImageUrl;
}
public static final class Builder {
private String compareResult;
private String deviceID;
private Integer leftTopX;
private Integer leftTopY;
private Integer rightBtmX;
private Integer rightBtmY;
private Float score;
private Long shotTime;
private String sourceID;
private String sourceImagePath;
private String sourceImageUrl;
private String targetImagePath;
private String targetImageUrl;
/**
* CompareResult.
*/
public Builder compareResult(String compareResult) {
this.compareResult = compareResult;
return this;
}
/**
* DeviceID.
*/
public Builder deviceID(String deviceID) {
this.deviceID = deviceID;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(Integer leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(Integer leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* RightBtmX.
*/
public Builder rightBtmX(Integer rightBtmX) {
this.rightBtmX = rightBtmX;
return this;
}
/**
* RightBtmY.
*/
public Builder rightBtmY(Integer rightBtmY) {
this.rightBtmY = rightBtmY;
return this;
}
/**
* Score.
*/
public Builder score(Float score) {
this.score = score;
return this;
}
/**
* ShotTime.
*/
public Builder shotTime(Long shotTime) {
this.shotTime = shotTime;
return this;
}
/**
* SourceID.
*/
public Builder sourceID(String sourceID) {
this.sourceID = sourceID;
return this;
}
/**
* SourceImagePath.
*/
public Builder sourceImagePath(String sourceImagePath) {
this.sourceImagePath = sourceImagePath;
return this;
}
/**
* SourceImageUrl.
*/
public Builder sourceImageUrl(String sourceImageUrl) {
this.sourceImageUrl = sourceImageUrl;
return this;
}
/**
* TargetImagePath.
*/
public Builder targetImagePath(String targetImagePath) {
this.targetImagePath = targetImagePath;
return this;
}
/**
* TargetImageUrl.
*/
public Builder targetImageUrl(String targetImageUrl) {
this.targetImageUrl = targetImageUrl;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNumber")
private Integer pageNumber;
@NameInMap("PageSize")
private Integer pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("TotalCount")
private Integer totalCount;
@NameInMap("TotalPage")
private Integer totalPage;
private Data(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.totalCount = builder.totalCount;
this.totalPage = builder.totalPage;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Integer getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Integer getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return totalCount
*/
public Integer getTotalCount() {
return this.totalCount;
}
/**
* @return totalPage
*/
public Integer getTotalPage() {
return this.totalPage;
}
public static final class Builder {
private Integer pageNumber;
private Integer pageSize;
private java.util.List < Records> records;
private Integer totalCount;
private Integer totalPage;
/**
* PageNumber.
*/
public Builder pageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Records.
*/
public Builder records(java.util.List < Records> records) {
this.records = records;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Integer totalCount) {
this.totalCount = totalCount;
return this;
}
/**
* TotalPage.
*/
public Builder totalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchTargetRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchTargetRequest} extends {@link RequestModel}
*
* <p>SearchTargetRequest</p>
*/
public class SearchTargetRequest extends Request {
@Body
@NameInMap("BeginTime")
private String beginTime;
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("DeviceList")
private String deviceList;
@Body
@NameInMap("EndTime")
private String endTime;
@Body
@NameInMap("ModelId")
private String modelId;
@Body
@NameInMap("OrderBy")
private String orderBy;
@Body
@NameInMap("PageNumber")
@Validation(required = true)
private Long pageNumber;
@Body
@NameInMap("PageSize")
@Validation(required = true)
private Long pageSize;
@Body
@NameInMap("SimilarityThreshold")
private Double similarityThreshold;
@Body
@NameInMap("TargetAttributes")
private String targetAttributes;
@Body
@NameInMap("TargetImageData")
private String targetImageData;
@Body
@NameInMap("TargetImageUrl")
private String targetImageUrl;
@Body
@NameInMap("TargetType")
@Validation(required = true)
private String targetType;
private SearchTargetRequest(Builder builder) {
super(builder);
this.beginTime = builder.beginTime;
this.corpId = builder.corpId;
this.deviceList = builder.deviceList;
this.endTime = builder.endTime;
this.modelId = builder.modelId;
this.orderBy = builder.orderBy;
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.similarityThreshold = builder.similarityThreshold;
this.targetAttributes = builder.targetAttributes;
this.targetImageData = builder.targetImageData;
this.targetImageUrl = builder.targetImageUrl;
this.targetType = builder.targetType;
}
public static Builder builder() {
return new Builder();
}
public static SearchTargetRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return beginTime
*/
public String getBeginTime() {
return this.beginTime;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return deviceList
*/
public String getDeviceList() {
return this.deviceList;
}
/**
* @return endTime
*/
public String getEndTime() {
return this.endTime;
}
/**
* @return modelId
*/
public String getModelId() {
return this.modelId;
}
/**
* @return orderBy
*/
public String getOrderBy() {
return this.orderBy;
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return similarityThreshold
*/
public Double getSimilarityThreshold() {
return this.similarityThreshold;
}
/**
* @return targetAttributes
*/
public String getTargetAttributes() {
return this.targetAttributes;
}
/**
* @return targetImageData
*/
public String getTargetImageData() {
return this.targetImageData;
}
/**
* @return targetImageUrl
*/
public String getTargetImageUrl() {
return this.targetImageUrl;
}
/**
* @return targetType
*/
public String getTargetType() {
return this.targetType;
}
public static final class Builder extends Request.Builder<SearchTargetRequest, Builder> {
private String beginTime;
private String corpId;
private String deviceList;
private String endTime;
private String modelId;
private String orderBy;
private Long pageNumber;
private Long pageSize;
private Double similarityThreshold;
private String targetAttributes;
private String targetImageData;
private String targetImageUrl;
private String targetType;
private Builder() {
super();
}
private Builder(SearchTargetRequest response) {
super(response);
this.beginTime = response.beginTime;
this.corpId = response.corpId;
this.deviceList = response.deviceList;
this.endTime = response.endTime;
this.modelId = response.modelId;
this.orderBy = response.orderBy;
this.pageNumber = response.pageNumber;
this.pageSize = response.pageSize;
this.similarityThreshold = response.similarityThreshold;
this.targetAttributes = response.targetAttributes;
this.targetImageData = response.targetImageData;
this.targetImageUrl = response.targetImageUrl;
this.targetType = response.targetType;
}
/**
* BeginTime.
*/
public Builder beginTime(String beginTime) {
this.putBodyParameter("BeginTime", beginTime);
this.beginTime = beginTime;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DeviceList.
*/
public Builder deviceList(String deviceList) {
this.putBodyParameter("DeviceList", deviceList);
this.deviceList = deviceList;
return this;
}
/**
* EndTime.
*/
public Builder endTime(String endTime) {
this.putBodyParameter("EndTime", endTime);
this.endTime = endTime;
return this;
}
/**
* ModelId.
*/
public Builder modelId(String modelId) {
this.putBodyParameter("ModelId", modelId);
this.modelId = modelId;
return this;
}
/**
* OrderBy.
*/
public Builder orderBy(String orderBy) {
this.putBodyParameter("OrderBy", orderBy);
this.orderBy = orderBy;
return this;
}
/**
* PageNumber.
*/
public Builder pageNumber(Long pageNumber) {
this.putBodyParameter("PageNumber", pageNumber);
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.putBodyParameter("PageSize", pageSize);
this.pageSize = pageSize;
return this;
}
/**
* SimilarityThreshold.
*/
public Builder similarityThreshold(Double similarityThreshold) {
this.putBodyParameter("SimilarityThreshold", similarityThreshold);
this.similarityThreshold = similarityThreshold;
return this;
}
/**
* TargetAttributes.
*/
public Builder targetAttributes(String targetAttributes) {
this.putBodyParameter("TargetAttributes", targetAttributes);
this.targetAttributes = targetAttributes;
return this;
}
/**
* TargetImageData.
*/
public Builder targetImageData(String targetImageData) {
this.putBodyParameter("TargetImageData", targetImageData);
this.targetImageData = targetImageData;
return this;
}
/**
* TargetImageUrl.
*/
public Builder targetImageUrl(String targetImageUrl) {
this.putBodyParameter("TargetImageUrl", targetImageUrl);
this.targetImageUrl = targetImageUrl;
return this;
}
/**
* TargetType.
*/
public Builder targetType(String targetType) {
this.putBodyParameter("TargetType", targetType);
this.targetType = targetType;
return this;
}
@Override
public SearchTargetRequest build() {
return new SearchTargetRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchTargetResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchTargetResponse} extends {@link TeaModel}
*
* <p>SearchTargetResponse</p>
*/
public class SearchTargetResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SearchTargetResponseBody body;
private SearchTargetResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SearchTargetResponse 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 body
*/
public SearchTargetResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SearchTargetResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SearchTargetResponseBody body);
@Override
SearchTargetResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SearchTargetResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SearchTargetResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SearchTargetResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SearchTargetResponseBody body) {
this.body = body;
return this;
}
@Override
public SearchTargetResponse build() {
return new SearchTargetResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SearchTargetResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SearchTargetResponseBody} extends {@link TeaModel}
*
* <p>SearchTargetResponseBody</p>
*/
public class SearchTargetResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private SearchTargetResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static SearchTargetResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public SearchTargetResponseBody build() {
return new SearchTargetResponseBody(this);
}
}
public static class Records extends TeaModel {
@NameInMap("DeviceId")
private String deviceId;
@NameInMap("LeftTopX")
private Long leftTopX;
@NameInMap("LeftTopY")
private Long leftTopY;
@NameInMap("RightBottomX")
private Long rightBottomX;
@NameInMap("RightBottomY")
private Long rightBottomY;
@NameInMap("SourceImageUrl")
private String sourceImageUrl;
@NameInMap("TargetAttributes")
private String targetAttributes;
@NameInMap("TargetImageSimilarity")
private Double targetImageSimilarity;
@NameInMap("TargetImageUrl")
private String targetImageUrl;
@NameInMap("TargetType")
private String targetType;
@NameInMap("Timestamp")
private String timestamp;
private Records(Builder builder) {
this.deviceId = builder.deviceId;
this.leftTopX = builder.leftTopX;
this.leftTopY = builder.leftTopY;
this.rightBottomX = builder.rightBottomX;
this.rightBottomY = builder.rightBottomY;
this.sourceImageUrl = builder.sourceImageUrl;
this.targetAttributes = builder.targetAttributes;
this.targetImageSimilarity = builder.targetImageSimilarity;
this.targetImageUrl = builder.targetImageUrl;
this.targetType = builder.targetType;
this.timestamp = builder.timestamp;
}
public static Builder builder() {
return new Builder();
}
public static Records create() {
return builder().build();
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return leftTopX
*/
public Long getLeftTopX() {
return this.leftTopX;
}
/**
* @return leftTopY
*/
public Long getLeftTopY() {
return this.leftTopY;
}
/**
* @return rightBottomX
*/
public Long getRightBottomX() {
return this.rightBottomX;
}
/**
* @return rightBottomY
*/
public Long getRightBottomY() {
return this.rightBottomY;
}
/**
* @return sourceImageUrl
*/
public String getSourceImageUrl() {
return this.sourceImageUrl;
}
/**
* @return targetAttributes
*/
public String getTargetAttributes() {
return this.targetAttributes;
}
/**
* @return targetImageSimilarity
*/
public Double getTargetImageSimilarity() {
return this.targetImageSimilarity;
}
/**
* @return targetImageUrl
*/
public String getTargetImageUrl() {
return this.targetImageUrl;
}
/**
* @return targetType
*/
public String getTargetType() {
return this.targetType;
}
/**
* @return timestamp
*/
public String getTimestamp() {
return this.timestamp;
}
public static final class Builder {
private String deviceId;
private Long leftTopX;
private Long leftTopY;
private Long rightBottomX;
private Long rightBottomY;
private String sourceImageUrl;
private String targetAttributes;
private Double targetImageSimilarity;
private String targetImageUrl;
private String targetType;
private String timestamp;
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
/**
* LeftTopX.
*/
public Builder leftTopX(Long leftTopX) {
this.leftTopX = leftTopX;
return this;
}
/**
* LeftTopY.
*/
public Builder leftTopY(Long leftTopY) {
this.leftTopY = leftTopY;
return this;
}
/**
* RightBottomX.
*/
public Builder rightBottomX(Long rightBottomX) {
this.rightBottomX = rightBottomX;
return this;
}
/**
* RightBottomY.
*/
public Builder rightBottomY(Long rightBottomY) {
this.rightBottomY = rightBottomY;
return this;
}
/**
* SourceImageUrl.
*/
public Builder sourceImageUrl(String sourceImageUrl) {
this.sourceImageUrl = sourceImageUrl;
return this;
}
/**
* TargetAttributes.
*/
public Builder targetAttributes(String targetAttributes) {
this.targetAttributes = targetAttributes;
return this;
}
/**
* TargetImageSimilarity.
*/
public Builder targetImageSimilarity(Double targetImageSimilarity) {
this.targetImageSimilarity = targetImageSimilarity;
return this;
}
/**
* TargetImageUrl.
*/
public Builder targetImageUrl(String targetImageUrl) {
this.targetImageUrl = targetImageUrl;
return this;
}
/**
* TargetType.
*/
public Builder targetType(String targetType) {
this.targetType = targetType;
return this;
}
/**
* Timestamp.
*/
public Builder timestamp(String timestamp) {
this.timestamp = timestamp;
return this;
}
public Records build() {
return new Records(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("PageNumber")
private Long pageNumber;
@NameInMap("PageSize")
private Long pageSize;
@NameInMap("Records")
private java.util.List < Records> records;
@NameInMap("TotalCount")
private Long totalCount;
private Data(Builder builder) {
this.pageNumber = builder.pageNumber;
this.pageSize = builder.pageSize;
this.records = builder.records;
this.totalCount = builder.totalCount;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return pageNumber
*/
public Long getPageNumber() {
return this.pageNumber;
}
/**
* @return pageSize
*/
public Long getPageSize() {
return this.pageSize;
}
/**
* @return records
*/
public java.util.List < Records> getRecords() {
return this.records;
}
/**
* @return totalCount
*/
public Long getTotalCount() {
return this.totalCount;
}
public static final class Builder {
private Long pageNumber;
private Long pageSize;
private java.util.List < Records> records;
private Long totalCount;
/**
* PageNumber.
*/
public Builder pageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
/**
* PageSize.
*/
public Builder pageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
/**
* Records.
*/
public Builder records(java.util.List < Records> records) {
this.records = records;
return this;
}
/**
* TotalCount.
*/
public Builder totalCount(Long totalCount) {
this.totalCount = totalCount;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetAiotStorageInfoRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetAiotStorageInfoRequest} extends {@link RequestModel}
*
* <p>SetAiotStorageInfoRequest</p>
*/
public class SetAiotStorageInfoRequest extends Request {
@Body
@NameInMap("EventAlarmMq")
@Validation(required = true)
private EventAlarmMq eventAlarmMq;
@Body
@NameInMap("EventAlarmPictureStorage")
@Validation(required = true)
private EventAlarmPictureStorage eventAlarmPictureStorage;
private SetAiotStorageInfoRequest(Builder builder) {
super(builder);
this.eventAlarmMq = builder.eventAlarmMq;
this.eventAlarmPictureStorage = builder.eventAlarmPictureStorage;
}
public static Builder builder() {
return new Builder();
}
public static SetAiotStorageInfoRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return eventAlarmMq
*/
public EventAlarmMq getEventAlarmMq() {
return this.eventAlarmMq;
}
/**
* @return eventAlarmPictureStorage
*/
public EventAlarmPictureStorage getEventAlarmPictureStorage() {
return this.eventAlarmPictureStorage;
}
public static final class Builder extends Request.Builder<SetAiotStorageInfoRequest, Builder> {
private EventAlarmMq eventAlarmMq;
private EventAlarmPictureStorage eventAlarmPictureStorage;
private Builder() {
super();
}
private Builder(SetAiotStorageInfoRequest response) {
super(response);
this.eventAlarmMq = response.eventAlarmMq;
this.eventAlarmPictureStorage = response.eventAlarmPictureStorage;
}
/**
* EventAlarmMq.
*/
public Builder eventAlarmMq(EventAlarmMq eventAlarmMq) {
this.putBodyParameter("EventAlarmMq", eventAlarmMq);
this.eventAlarmMq = eventAlarmMq;
return this;
}
/**
* EventAlarmPictureStorage.
*/
public Builder eventAlarmPictureStorage(EventAlarmPictureStorage eventAlarmPictureStorage) {
this.putBodyParameter("EventAlarmPictureStorage", eventAlarmPictureStorage);
this.eventAlarmPictureStorage = eventAlarmPictureStorage;
return this;
}
@Override
public SetAiotStorageInfoRequest build() {
return new SetAiotStorageInfoRequest(this);
}
}
public static class EventAlarmMq extends TeaModel {
@NameInMap("AlarmTopic")
@Validation(required = true)
private String alarmTopic;
@NameInMap("EventTopic")
@Validation(required = true)
private String eventTopic;
@NameInMap("InstanceId")
@Validation(required = true)
private String instanceId;
@NameInMap("MqType")
private String mqType;
@NameInMap("RamArnRole")
@Validation(required = true)
private String ramArnRole;
@NameInMap("RegionId")
@Validation(required = true)
private String regionId;
private EventAlarmMq(Builder builder) {
this.alarmTopic = builder.alarmTopic;
this.eventTopic = builder.eventTopic;
this.instanceId = builder.instanceId;
this.mqType = builder.mqType;
this.ramArnRole = builder.ramArnRole;
this.regionId = builder.regionId;
}
public static Builder builder() {
return new Builder();
}
public static EventAlarmMq create() {
return builder().build();
}
/**
* @return alarmTopic
*/
public String getAlarmTopic() {
return this.alarmTopic;
}
/**
* @return eventTopic
*/
public String getEventTopic() {
return this.eventTopic;
}
/**
* @return instanceId
*/
public String getInstanceId() {
return this.instanceId;
}
/**
* @return mqType
*/
public String getMqType() {
return this.mqType;
}
/**
* @return ramArnRole
*/
public String getRamArnRole() {
return this.ramArnRole;
}
/**
* @return regionId
*/
public String getRegionId() {
return this.regionId;
}
public static final class Builder {
private String alarmTopic;
private String eventTopic;
private String instanceId;
private String mqType;
private String ramArnRole;
private String regionId;
/**
* AlarmTopic.
*/
public Builder alarmTopic(String alarmTopic) {
this.alarmTopic = alarmTopic;
return this;
}
/**
* EventTopic.
*/
public Builder eventTopic(String eventTopic) {
this.eventTopic = eventTopic;
return this;
}
/**
* InstanceId.
*/
public Builder instanceId(String instanceId) {
this.instanceId = instanceId;
return this;
}
/**
* MqType.
*/
public Builder mqType(String mqType) {
this.mqType = mqType;
return this;
}
/**
* RamArnRole.
*/
public Builder ramArnRole(String ramArnRole) {
this.ramArnRole = ramArnRole;
return this;
}
/**
* RegionId.
*/
public Builder regionId(String regionId) {
this.regionId = regionId;
return this;
}
public EventAlarmMq build() {
return new EventAlarmMq(this);
}
}
}
public static class EventAlarmPictureStorage extends TeaModel {
@NameInMap("Bucket")
@Validation(required = true)
private String bucket;
@NameInMap("Endpoint")
@Validation(required = true)
private String endpoint;
@NameInMap("Path")
private String path;
@NameInMap("Proxy")
private String proxy;
@NameInMap("RamArnRole")
@Validation(required = true)
private String ramArnRole;
@NameInMap("StorageType")
private String storageType;
private EventAlarmPictureStorage(Builder builder) {
this.bucket = builder.bucket;
this.endpoint = builder.endpoint;
this.path = builder.path;
this.proxy = builder.proxy;
this.ramArnRole = builder.ramArnRole;
this.storageType = builder.storageType;
}
public static Builder builder() {
return new Builder();
}
public static EventAlarmPictureStorage create() {
return builder().build();
}
/**
* @return bucket
*/
public String getBucket() {
return this.bucket;
}
/**
* @return endpoint
*/
public String getEndpoint() {
return this.endpoint;
}
/**
* @return path
*/
public String getPath() {
return this.path;
}
/**
* @return proxy
*/
public String getProxy() {
return this.proxy;
}
/**
* @return ramArnRole
*/
public String getRamArnRole() {
return this.ramArnRole;
}
/**
* @return storageType
*/
public String getStorageType() {
return this.storageType;
}
public static final class Builder {
private String bucket;
private String endpoint;
private String path;
private String proxy;
private String ramArnRole;
private String storageType;
/**
* Bucket.
*/
public Builder bucket(String bucket) {
this.bucket = bucket;
return this;
}
/**
* Endpoint.
*/
public Builder endpoint(String endpoint) {
this.endpoint = endpoint;
return this;
}
/**
* Path.
*/
public Builder path(String path) {
this.path = path;
return this;
}
/**
* Proxy.
*/
public Builder proxy(String proxy) {
this.proxy = proxy;
return this;
}
/**
* RamArnRole.
*/
public Builder ramArnRole(String ramArnRole) {
this.ramArnRole = ramArnRole;
return this;
}
/**
* StorageType.
*/
public Builder storageType(String storageType) {
this.storageType = storageType;
return this;
}
public EventAlarmPictureStorage build() {
return new EventAlarmPictureStorage(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetAiotStorageInfoResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetAiotStorageInfoResponse} extends {@link TeaModel}
*
* <p>SetAiotStorageInfoResponse</p>
*/
public class SetAiotStorageInfoResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SetAiotStorageInfoResponseBody body;
private SetAiotStorageInfoResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SetAiotStorageInfoResponse 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 body
*/
public SetAiotStorageInfoResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SetAiotStorageInfoResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SetAiotStorageInfoResponseBody body);
@Override
SetAiotStorageInfoResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SetAiotStorageInfoResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SetAiotStorageInfoResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SetAiotStorageInfoResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SetAiotStorageInfoResponseBody body) {
this.body = body;
return this;
}
@Override
public SetAiotStorageInfoResponse build() {
return new SetAiotStorageInfoResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetAiotStorageInfoResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetAiotStorageInfoResponseBody} extends {@link TeaModel}
*
* <p>SetAiotStorageInfoResponseBody</p>
*/
public class SetAiotStorageInfoResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SetAiotStorageInfoResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SetAiotStorageInfoResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SetAiotStorageInfoResponseBody build() {
return new SetAiotStorageInfoResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetStreamModeRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetStreamModeRequest} extends {@link RequestModel}
*
* <p>SetStreamModeRequest</p>
*/
public class SetStreamModeRequest extends Request {
@Body
@NameInMap("DeviceIdList")
@Validation(required = true)
private String deviceIdList;
@Body
@NameInMap("StreamMode")
@Validation(required = true)
private String streamMode;
private SetStreamModeRequest(Builder builder) {
super(builder);
this.deviceIdList = builder.deviceIdList;
this.streamMode = builder.streamMode;
}
public static Builder builder() {
return new Builder();
}
public static SetStreamModeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return deviceIdList
*/
public String getDeviceIdList() {
return this.deviceIdList;
}
/**
* @return streamMode
*/
public String getStreamMode() {
return this.streamMode;
}
public static final class Builder extends Request.Builder<SetStreamModeRequest, Builder> {
private String deviceIdList;
private String streamMode;
private Builder() {
super();
}
private Builder(SetStreamModeRequest response) {
super(response);
this.deviceIdList = response.deviceIdList;
this.streamMode = response.streamMode;
}
/**
* DeviceIdList.
*/
public Builder deviceIdList(String deviceIdList) {
this.putBodyParameter("DeviceIdList", deviceIdList);
this.deviceIdList = deviceIdList;
return this;
}
/**
* StreamMode.
*/
public Builder streamMode(String streamMode) {
this.putBodyParameter("StreamMode", streamMode);
this.streamMode = streamMode;
return this;
}
@Override
public SetStreamModeRequest build() {
return new SetStreamModeRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetStreamModeResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetStreamModeResponse} extends {@link TeaModel}
*
* <p>SetStreamModeResponse</p>
*/
public class SetStreamModeResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SetStreamModeResponseBody body;
private SetStreamModeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SetStreamModeResponse 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 body
*/
public SetStreamModeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SetStreamModeResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SetStreamModeResponseBody body);
@Override
SetStreamModeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SetStreamModeResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SetStreamModeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SetStreamModeResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SetStreamModeResponseBody body) {
this.body = body;
return this;
}
@Override
public SetStreamModeResponse build() {
return new SetStreamModeResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SetStreamModeResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SetStreamModeResponseBody} extends {@link TeaModel}
*
* <p>SetStreamModeResponseBody</p>
*/
public class SetStreamModeResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SetStreamModeResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SetStreamModeResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SetStreamModeResponseBody build() {
return new SetStreamModeResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartModelServiceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartModelServiceRequest} extends {@link RequestModel}
*
* <p>StartModelServiceRequest</p>
*/
public class StartModelServiceRequest extends Request {
@Body
@NameInMap("ModelServiceId")
private String modelServiceId;
private StartModelServiceRequest(Builder builder) {
super(builder);
this.modelServiceId = builder.modelServiceId;
}
public static Builder builder() {
return new Builder();
}
public static StartModelServiceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return modelServiceId
*/
public String getModelServiceId() {
return this.modelServiceId;
}
public static final class Builder extends Request.Builder<StartModelServiceRequest, Builder> {
private String modelServiceId;
private Builder() {
super();
}
private Builder(StartModelServiceRequest response) {
super(response);
this.modelServiceId = response.modelServiceId;
}
/**
* ModelServiceId.
*/
public Builder modelServiceId(String modelServiceId) {
this.putBodyParameter("ModelServiceId", modelServiceId);
this.modelServiceId = modelServiceId;
return this;
}
@Override
public StartModelServiceRequest build() {
return new StartModelServiceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartModelServiceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartModelServiceResponse} extends {@link TeaModel}
*
* <p>StartModelServiceResponse</p>
*/
public class StartModelServiceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StartModelServiceResponseBody body;
private StartModelServiceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static StartModelServiceResponse 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 body
*/
public StartModelServiceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StartModelServiceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(StartModelServiceResponseBody body);
@Override
StartModelServiceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StartModelServiceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private StartModelServiceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StartModelServiceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(StartModelServiceResponseBody body) {
this.body = body;
return this;
}
@Override
public StartModelServiceResponse build() {
return new StartModelServiceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartModelServiceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartModelServiceResponseBody} extends {@link TeaModel}
*
* <p>StartModelServiceResponseBody</p>
*/
public class StartModelServiceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private StartModelServiceResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StartModelServiceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public StartModelServiceResponseBody build() {
return new StartModelServiceResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("ModelServiceInstanceId")
private String modelServiceInstanceId;
@NameInMap("ModelServiceInstanceName")
private Integer modelServiceInstanceName;
@NameInMap("ModelServiceStatus")
private String modelServiceStatus;
private Data(Builder builder) {
this.modelServiceInstanceId = builder.modelServiceInstanceId;
this.modelServiceInstanceName = builder.modelServiceInstanceName;
this.modelServiceStatus = builder.modelServiceStatus;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return modelServiceInstanceId
*/
public String getModelServiceInstanceId() {
return this.modelServiceInstanceId;
}
/**
* @return modelServiceInstanceName
*/
public Integer getModelServiceInstanceName() {
return this.modelServiceInstanceName;
}
/**
* @return modelServiceStatus
*/
public String getModelServiceStatus() {
return this.modelServiceStatus;
}
public static final class Builder {
private String modelServiceInstanceId;
private Integer modelServiceInstanceName;
private String modelServiceStatus;
/**
* ModelServiceInstanceId.
*/
public Builder modelServiceInstanceId(String modelServiceInstanceId) {
this.modelServiceInstanceId = modelServiceInstanceId;
return this;
}
/**
* ModelServiceInstanceName.
*/
public Builder modelServiceInstanceName(Integer modelServiceInstanceName) {
this.modelServiceInstanceName = modelServiceInstanceName;
return this;
}
/**
* ModelServiceStatus.
*/
public Builder modelServiceStatus(String modelServiceStatus) {
this.modelServiceStatus = modelServiceStatus;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartStreamsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartStreamsRequest} extends {@link RequestModel}
*
* <p>StartStreamsRequest</p>
*/
public class StartStreamsRequest extends Request {
@Body
@NameInMap("Description")
private String description;
@Body
@NameInMap("DeviceIdList")
@Validation(required = true)
private String deviceIdList;
private StartStreamsRequest(Builder builder) {
super(builder);
this.description = builder.description;
this.deviceIdList = builder.deviceIdList;
}
public static Builder builder() {
return new Builder();
}
public static StartStreamsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return deviceIdList
*/
public String getDeviceIdList() {
return this.deviceIdList;
}
public static final class Builder extends Request.Builder<StartStreamsRequest, Builder> {
private String description;
private String deviceIdList;
private Builder() {
super();
}
private Builder(StartStreamsRequest response) {
super(response);
this.description = response.description;
this.deviceIdList = response.deviceIdList;
}
/**
* Description.
*/
public Builder description(String description) {
this.putBodyParameter("Description", description);
this.description = description;
return this;
}
/**
* 全局编号,支持多个,英文逗号分隔
*/
public Builder deviceIdList(String deviceIdList) {
this.putBodyParameter("DeviceIdList", deviceIdList);
this.deviceIdList = deviceIdList;
return this;
}
@Override
public StartStreamsRequest build() {
return new StartStreamsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartStreamsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartStreamsResponse} extends {@link TeaModel}
*
* <p>StartStreamsResponse</p>
*/
public class StartStreamsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StartStreamsResponseBody body;
private StartStreamsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static StartStreamsResponse 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 body
*/
public StartStreamsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StartStreamsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(StartStreamsResponseBody body);
@Override
StartStreamsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StartStreamsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private StartStreamsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StartStreamsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(StartStreamsResponseBody body) {
this.body = body;
return this;
}
@Override
public StartStreamsResponse build() {
return new StartStreamsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StartStreamsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StartStreamsResponseBody} extends {@link TeaModel}
*
* <p>StartStreamsResponseBody</p>
*/
public class StartStreamsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private StartStreamsResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StartStreamsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public StartStreamsResponseBody build() {
return new StartStreamsResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopModelServiceRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopModelServiceRequest} extends {@link RequestModel}
*
* <p>StopModelServiceRequest</p>
*/
public class StopModelServiceRequest extends Request {
@Body
@NameInMap("ModelServiceId")
private String modelServiceId;
private StopModelServiceRequest(Builder builder) {
super(builder);
this.modelServiceId = builder.modelServiceId;
}
public static Builder builder() {
return new Builder();
}
public static StopModelServiceRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return modelServiceId
*/
public String getModelServiceId() {
return this.modelServiceId;
}
public static final class Builder extends Request.Builder<StopModelServiceRequest, Builder> {
private String modelServiceId;
private Builder() {
super();
}
private Builder(StopModelServiceRequest response) {
super(response);
this.modelServiceId = response.modelServiceId;
}
/**
* ModelServiceId.
*/
public Builder modelServiceId(String modelServiceId) {
this.putBodyParameter("ModelServiceId", modelServiceId);
this.modelServiceId = modelServiceId;
return this;
}
@Override
public StopModelServiceRequest build() {
return new StopModelServiceRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopModelServiceResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopModelServiceResponse} extends {@link TeaModel}
*
* <p>StopModelServiceResponse</p>
*/
public class StopModelServiceResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StopModelServiceResponseBody body;
private StopModelServiceResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static StopModelServiceResponse 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 body
*/
public StopModelServiceResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopModelServiceResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(StopModelServiceResponseBody body);
@Override
StopModelServiceResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopModelServiceResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private StopModelServiceResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopModelServiceResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopModelServiceResponseBody body) {
this.body = body;
return this;
}
@Override
public StopModelServiceResponse build() {
return new StopModelServiceResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopModelServiceResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopModelServiceResponseBody} extends {@link TeaModel}
*
* <p>StopModelServiceResponseBody</p>
*/
public class StopModelServiceResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private StopModelServiceResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StopModelServiceResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public StopModelServiceResponseBody build() {
return new StopModelServiceResponseBody(this);
}
}
public static class Data extends TeaModel {
@NameInMap("ModelServiceInstanceId")
private String modelServiceInstanceId;
@NameInMap("ModelServiceInstanceName")
private Integer modelServiceInstanceName;
@NameInMap("ModelServiceStatus")
private String modelServiceStatus;
private Data(Builder builder) {
this.modelServiceInstanceId = builder.modelServiceInstanceId;
this.modelServiceInstanceName = builder.modelServiceInstanceName;
this.modelServiceStatus = builder.modelServiceStatus;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return modelServiceInstanceId
*/
public String getModelServiceInstanceId() {
return this.modelServiceInstanceId;
}
/**
* @return modelServiceInstanceName
*/
public Integer getModelServiceInstanceName() {
return this.modelServiceInstanceName;
}
/**
* @return modelServiceStatus
*/
public String getModelServiceStatus() {
return this.modelServiceStatus;
}
public static final class Builder {
private String modelServiceInstanceId;
private Integer modelServiceInstanceName;
private String modelServiceStatus;
/**
* ModelServiceInstanceId.
*/
public Builder modelServiceInstanceId(String modelServiceInstanceId) {
this.modelServiceInstanceId = modelServiceInstanceId;
return this;
}
/**
* ModelServiceInstanceName.
*/
public Builder modelServiceInstanceName(Integer modelServiceInstanceName) {
this.modelServiceInstanceName = modelServiceInstanceName;
return this;
}
/**
* ModelServiceStatus.
*/
public Builder modelServiceStatus(String modelServiceStatus) {
this.modelServiceStatus = modelServiceStatus;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopMonitorRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopMonitorRequest} extends {@link RequestModel}
*
* <p>StopMonitorRequest</p>
*/
public class StopMonitorRequest extends Request {
@Body
@NameInMap("AlgorithmVendor")
@Validation(required = true)
private String algorithmVendor;
@Body
@NameInMap("TaskId")
@Validation(required = true)
private String taskId;
private StopMonitorRequest(Builder builder) {
super(builder);
this.algorithmVendor = builder.algorithmVendor;
this.taskId = builder.taskId;
}
public static Builder builder() {
return new Builder();
}
public static StopMonitorRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return algorithmVendor
*/
public String getAlgorithmVendor() {
return this.algorithmVendor;
}
/**
* @return taskId
*/
public String getTaskId() {
return this.taskId;
}
public static final class Builder extends Request.Builder<StopMonitorRequest, Builder> {
private String algorithmVendor;
private String taskId;
private Builder() {
super();
}
private Builder(StopMonitorRequest response) {
super(response);
this.algorithmVendor = response.algorithmVendor;
this.taskId = response.taskId;
}
/**
* AlgorithmVendor.
*/
public Builder algorithmVendor(String algorithmVendor) {
this.putBodyParameter("AlgorithmVendor", algorithmVendor);
this.algorithmVendor = algorithmVendor;
return this;
}
/**
* TaskId.
*/
public Builder taskId(String taskId) {
this.putBodyParameter("TaskId", taskId);
this.taskId = taskId;
return this;
}
@Override
public StopMonitorRequest build() {
return new StopMonitorRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopMonitorResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopMonitorResponse} extends {@link TeaModel}
*
* <p>StopMonitorResponse</p>
*/
public class StopMonitorResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StopMonitorResponseBody body;
private StopMonitorResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static StopMonitorResponse 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 body
*/
public StopMonitorResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopMonitorResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(StopMonitorResponseBody body);
@Override
StopMonitorResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopMonitorResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private StopMonitorResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopMonitorResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopMonitorResponseBody body) {
this.body = body;
return this;
}
@Override
public StopMonitorResponse build() {
return new StopMonitorResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopMonitorResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopMonitorResponseBody} extends {@link TeaModel}
*
* <p>StopMonitorResponseBody</p>
*/
public class StopMonitorResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private String data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private StopMonitorResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StopMonitorResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public String getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(String data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public StopMonitorResponseBody build() {
return new StopMonitorResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopStreamsRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopStreamsRequest} extends {@link RequestModel}
*
* <p>StopStreamsRequest</p>
*/
public class StopStreamsRequest extends Request {
@Body
@NameInMap("Description")
private String description;
@Body
@NameInMap("DeviceIdList")
@Validation(required = true)
private String deviceIdList;
private StopStreamsRequest(Builder builder) {
super(builder);
this.description = builder.description;
this.deviceIdList = builder.deviceIdList;
}
public static Builder builder() {
return new Builder();
}
public static StopStreamsRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return description
*/
public String getDescription() {
return this.description;
}
/**
* @return deviceIdList
*/
public String getDeviceIdList() {
return this.deviceIdList;
}
public static final class Builder extends Request.Builder<StopStreamsRequest, Builder> {
private String description;
private String deviceIdList;
private Builder() {
super();
}
private Builder(StopStreamsRequest response) {
super(response);
this.description = response.description;
this.deviceIdList = response.deviceIdList;
}
/**
* Description.
*/
public Builder description(String description) {
this.putBodyParameter("Description", description);
this.description = description;
return this;
}
/**
* 全局编号,支持多个,英文逗号分隔
*/
public Builder deviceIdList(String deviceIdList) {
this.putBodyParameter("DeviceIdList", deviceIdList);
this.deviceIdList = deviceIdList;
return this;
}
@Override
public StopStreamsRequest build() {
return new StopStreamsRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopStreamsResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopStreamsResponse} extends {@link TeaModel}
*
* <p>StopStreamsResponse</p>
*/
public class StopStreamsResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private StopStreamsResponseBody body;
private StopStreamsResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static StopStreamsResponse 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 body
*/
public StopStreamsResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<StopStreamsResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(StopStreamsResponseBody body);
@Override
StopStreamsResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<StopStreamsResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private StopStreamsResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(StopStreamsResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(StopStreamsResponseBody body) {
this.body = body;
return this;
}
@Override
public StopStreamsResponse build() {
return new StopStreamsResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/StopStreamsResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link StopStreamsResponseBody} extends {@link TeaModel}
*
* <p>StopStreamsResponseBody</p>
*/
public class StopStreamsResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private StopStreamsResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static StopStreamsResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public StopStreamsResponseBody build() {
return new StopStreamsResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeDeviceEventRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeDeviceEventRequest} extends {@link RequestModel}
*
* <p>SubscribeDeviceEventRequest</p>
*/
public class SubscribeDeviceEventRequest extends Request {
@Query
@NameInMap("DeviceId")
@Validation(required = true)
private String deviceId;
@Query
@NameInMap("PushConfig")
@Validation(required = true)
private String pushConfig;
private SubscribeDeviceEventRequest(Builder builder) {
super(builder);
this.deviceId = builder.deviceId;
this.pushConfig = builder.pushConfig;
}
public static Builder builder() {
return new Builder();
}
public static SubscribeDeviceEventRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return pushConfig
*/
public String getPushConfig() {
return this.pushConfig;
}
public static final class Builder extends Request.Builder<SubscribeDeviceEventRequest, Builder> {
private String deviceId;
private String pushConfig;
private Builder() {
super();
}
private Builder(SubscribeDeviceEventRequest response) {
super(response);
this.deviceId = response.deviceId;
this.pushConfig = response.pushConfig;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.putQueryParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
/**
* PushConfig.
*/
public Builder pushConfig(String pushConfig) {
this.putQueryParameter("PushConfig", pushConfig);
this.pushConfig = pushConfig;
return this;
}
@Override
public SubscribeDeviceEventRequest build() {
return new SubscribeDeviceEventRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeDeviceEventResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeDeviceEventResponse} extends {@link TeaModel}
*
* <p>SubscribeDeviceEventResponse</p>
*/
public class SubscribeDeviceEventResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SubscribeDeviceEventResponseBody body;
private SubscribeDeviceEventResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SubscribeDeviceEventResponse 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 body
*/
public SubscribeDeviceEventResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SubscribeDeviceEventResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SubscribeDeviceEventResponseBody body);
@Override
SubscribeDeviceEventResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SubscribeDeviceEventResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SubscribeDeviceEventResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SubscribeDeviceEventResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SubscribeDeviceEventResponseBody body) {
this.body = body;
return this;
}
@Override
public SubscribeDeviceEventResponse build() {
return new SubscribeDeviceEventResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeDeviceEventResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeDeviceEventResponseBody} extends {@link TeaModel}
*
* <p>SubscribeDeviceEventResponseBody</p>
*/
public class SubscribeDeviceEventResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SubscribeDeviceEventResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SubscribeDeviceEventResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SubscribeDeviceEventResponseBody build() {
return new SubscribeDeviceEventResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeSpaceEventRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeSpaceEventRequest} extends {@link RequestModel}
*
* <p>SubscribeSpaceEventRequest</p>
*/
public class SubscribeSpaceEventRequest extends Request {
@Query
@NameInMap("PushConfig")
@Validation(required = true)
private String pushConfig;
@Query
@NameInMap("SpaceId")
@Validation(required = true)
private String spaceId;
private SubscribeSpaceEventRequest(Builder builder) {
super(builder);
this.pushConfig = builder.pushConfig;
this.spaceId = builder.spaceId;
}
public static Builder builder() {
return new Builder();
}
public static SubscribeSpaceEventRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return pushConfig
*/
public String getPushConfig() {
return this.pushConfig;
}
/**
* @return spaceId
*/
public String getSpaceId() {
return this.spaceId;
}
public static final class Builder extends Request.Builder<SubscribeSpaceEventRequest, Builder> {
private String pushConfig;
private String spaceId;
private Builder() {
super();
}
private Builder(SubscribeSpaceEventRequest response) {
super(response);
this.pushConfig = response.pushConfig;
this.spaceId = response.spaceId;
}
/**
* PushConfig.
*/
public Builder pushConfig(String pushConfig) {
this.putQueryParameter("PushConfig", pushConfig);
this.pushConfig = pushConfig;
return this;
}
/**
* SpaceId.
*/
public Builder spaceId(String spaceId) {
this.putQueryParameter("SpaceId", spaceId);
this.spaceId = spaceId;
return this;
}
@Override
public SubscribeSpaceEventRequest build() {
return new SubscribeSpaceEventRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeSpaceEventResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeSpaceEventResponse} extends {@link TeaModel}
*
* <p>SubscribeSpaceEventResponse</p>
*/
public class SubscribeSpaceEventResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SubscribeSpaceEventResponseBody body;
private SubscribeSpaceEventResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SubscribeSpaceEventResponse 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 body
*/
public SubscribeSpaceEventResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SubscribeSpaceEventResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SubscribeSpaceEventResponseBody body);
@Override
SubscribeSpaceEventResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SubscribeSpaceEventResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SubscribeSpaceEventResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SubscribeSpaceEventResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SubscribeSpaceEventResponseBody body) {
this.body = body;
return this;
}
@Override
public SubscribeSpaceEventResponse build() {
return new SubscribeSpaceEventResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SubscribeSpaceEventResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SubscribeSpaceEventResponseBody} extends {@link TeaModel}
*
* <p>SubscribeSpaceEventResponseBody</p>
*/
public class SubscribeSpaceEventResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private SubscribeSpaceEventResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static SubscribeSpaceEventResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public SubscribeSpaceEventResponseBody build() {
return new SubscribeSpaceEventResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SyncDeviceTimeRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SyncDeviceTimeRequest} extends {@link RequestModel}
*
* <p>SyncDeviceTimeRequest</p>
*/
public class SyncDeviceTimeRequest extends Request {
@Body
@NameInMap("DeviceSn")
@Validation(required = true)
private String deviceSn;
@Body
@NameInMap("DeviceTimeStamp")
@Validation(required = true)
private String deviceTimeStamp;
private SyncDeviceTimeRequest(Builder builder) {
super(builder);
this.deviceSn = builder.deviceSn;
this.deviceTimeStamp = builder.deviceTimeStamp;
}
public static Builder builder() {
return new Builder();
}
public static SyncDeviceTimeRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return deviceSn
*/
public String getDeviceSn() {
return this.deviceSn;
}
/**
* @return deviceTimeStamp
*/
public String getDeviceTimeStamp() {
return this.deviceTimeStamp;
}
public static final class Builder extends Request.Builder<SyncDeviceTimeRequest, Builder> {
private String deviceSn;
private String deviceTimeStamp;
private Builder() {
super();
}
private Builder(SyncDeviceTimeRequest response) {
super(response);
this.deviceSn = response.deviceSn;
this.deviceTimeStamp = response.deviceTimeStamp;
}
/**
* DeviceSn.
*/
public Builder deviceSn(String deviceSn) {
this.putBodyParameter("DeviceSn", deviceSn);
this.deviceSn = deviceSn;
return this;
}
/**
* DeviceTimeStamp.
*/
public Builder deviceTimeStamp(String deviceTimeStamp) {
this.putBodyParameter("DeviceTimeStamp", deviceTimeStamp);
this.deviceTimeStamp = deviceTimeStamp;
return this;
}
@Override
public SyncDeviceTimeRequest build() {
return new SyncDeviceTimeRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SyncDeviceTimeResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SyncDeviceTimeResponse} extends {@link TeaModel}
*
* <p>SyncDeviceTimeResponse</p>
*/
public class SyncDeviceTimeResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private SyncDeviceTimeResponseBody body;
private SyncDeviceTimeResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static SyncDeviceTimeResponse 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 body
*/
public SyncDeviceTimeResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<SyncDeviceTimeResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(SyncDeviceTimeResponseBody body);
@Override
SyncDeviceTimeResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<SyncDeviceTimeResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private SyncDeviceTimeResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(SyncDeviceTimeResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(SyncDeviceTimeResponseBody body) {
this.body = body;
return this;
}
@Override
public SyncDeviceTimeResponse build() {
return new SyncDeviceTimeResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/SyncDeviceTimeResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link SyncDeviceTimeResponseBody} extends {@link TeaModel}
*
* <p>SyncDeviceTimeResponseBody</p>
*/
public class SyncDeviceTimeResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("NTPServer")
private String NTPServer;
@NameInMap("RequestId")
private String requestId;
@NameInMap("RetryInterval")
private String retryInterval;
@NameInMap("SyncInterval")
private String syncInterval;
@NameInMap("TimeStamp")
private String timeStamp;
private SyncDeviceTimeResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.NTPServer = builder.NTPServer;
this.requestId = builder.requestId;
this.retryInterval = builder.retryInterval;
this.syncInterval = builder.syncInterval;
this.timeStamp = builder.timeStamp;
}
public static Builder builder() {
return new Builder();
}
public static SyncDeviceTimeResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return NTPServer
*/
public String getNTPServer() {
return this.NTPServer;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return retryInterval
*/
public String getRetryInterval() {
return this.retryInterval;
}
/**
* @return syncInterval
*/
public String getSyncInterval() {
return this.syncInterval;
}
/**
* @return timeStamp
*/
public String getTimeStamp() {
return this.timeStamp;
}
public static final class Builder {
private String code;
private String message;
private String NTPServer;
private String requestId;
private String retryInterval;
private String syncInterval;
private String timeStamp;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* NTPServer.
*/
public Builder NTPServer(String NTPServer) {
this.NTPServer = NTPServer;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* RetryInterval.
*/
public Builder retryInterval(String retryInterval) {
this.retryInterval = retryInterval;
return this;
}
/**
* SyncInterval.
*/
public Builder syncInterval(String syncInterval) {
this.syncInterval = syncInterval;
return this;
}
/**
* TimeStamp.
*/
public Builder timeStamp(String timeStamp) {
this.timeStamp = timeStamp;
return this;
}
public SyncDeviceTimeResponseBody build() {
return new SyncDeviceTimeResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindCorpGroupRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindCorpGroupRequest} extends {@link RequestModel}
*
* <p>UnbindCorpGroupRequest</p>
*/
public class UnbindCorpGroupRequest extends Request {
@Body
@NameInMap("CorpGroupId")
@Validation(required = true)
private String corpGroupId;
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
private UnbindCorpGroupRequest(Builder builder) {
super(builder);
this.corpGroupId = builder.corpGroupId;
this.corpId = builder.corpId;
}
public static Builder builder() {
return new Builder();
}
public static UnbindCorpGroupRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpGroupId
*/
public String getCorpGroupId() {
return this.corpGroupId;
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
public static final class Builder extends Request.Builder<UnbindCorpGroupRequest, Builder> {
private String corpGroupId;
private String corpId;
private Builder() {
super();
}
private Builder(UnbindCorpGroupRequest response) {
super(response);
this.corpGroupId = response.corpGroupId;
this.corpId = response.corpId;
}
/**
* CorpGroupId.
*/
public Builder corpGroupId(String corpGroupId) {
this.putBodyParameter("CorpGroupId", corpGroupId);
this.corpGroupId = corpGroupId;
return this;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
@Override
public UnbindCorpGroupRequest build() {
return new UnbindCorpGroupRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindCorpGroupResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindCorpGroupResponse} extends {@link TeaModel}
*
* <p>UnbindCorpGroupResponse</p>
*/
public class UnbindCorpGroupResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UnbindCorpGroupResponseBody body;
private UnbindCorpGroupResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static UnbindCorpGroupResponse 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 body
*/
public UnbindCorpGroupResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UnbindCorpGroupResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(UnbindCorpGroupResponseBody body);
@Override
UnbindCorpGroupResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UnbindCorpGroupResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private UnbindCorpGroupResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UnbindCorpGroupResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(UnbindCorpGroupResponseBody body) {
this.body = body;
return this;
}
@Override
public UnbindCorpGroupResponse build() {
return new UnbindCorpGroupResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindCorpGroupResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindCorpGroupResponseBody} extends {@link TeaModel}
*
* <p>UnbindCorpGroupResponseBody</p>
*/
public class UnbindCorpGroupResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
@NameInMap("Success")
private Boolean success;
private UnbindCorpGroupResponseBody(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.requestId = builder.requestId;
this.success = builder.success;
}
public static Builder builder() {
return new Builder();
}
public static UnbindCorpGroupResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
/**
* @return success
*/
public Boolean getSuccess() {
return this.success;
}
public static final class Builder {
private String code;
private String message;
private String requestId;
private Boolean success;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
/**
* Success.
*/
public Builder success(Boolean success) {
this.success = success;
return this;
}
public UnbindCorpGroupResponseBody build() {
return new UnbindCorpGroupResponseBody(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindDevicesRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindDevicesRequest} extends {@link RequestModel}
*
* <p>UnbindDevicesRequest</p>
*/
public class UnbindDevicesRequest extends Request {
@Body
@NameInMap("CorpId")
@Validation(required = true)
private String corpId;
@Body
@NameInMap("DeviceId")
@Validation(required = true)
private String deviceId;
@Body
@NameInMap("SubDeviceIdList")
@Validation(required = true)
private String subDeviceIdList;
private UnbindDevicesRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.deviceId = builder.deviceId;
this.subDeviceIdList = builder.subDeviceIdList;
}
public static Builder builder() {
return new Builder();
}
public static UnbindDevicesRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return deviceId
*/
public String getDeviceId() {
return this.deviceId;
}
/**
* @return subDeviceIdList
*/
public String getSubDeviceIdList() {
return this.subDeviceIdList;
}
public static final class Builder extends Request.Builder<UnbindDevicesRequest, Builder> {
private String corpId;
private String deviceId;
private String subDeviceIdList;
private Builder() {
super();
}
private Builder(UnbindDevicesRequest response) {
super(response);
this.corpId = response.corpId;
this.deviceId = response.deviceId;
this.subDeviceIdList = response.subDeviceIdList;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* DeviceId.
*/
public Builder deviceId(String deviceId) {
this.putBodyParameter("DeviceId", deviceId);
this.deviceId = deviceId;
return this;
}
/**
* SubDeviceIdList.
*/
public Builder subDeviceIdList(String subDeviceIdList) {
this.putBodyParameter("SubDeviceIdList", subDeviceIdList);
this.subDeviceIdList = subDeviceIdList;
return this;
}
@Override
public UnbindDevicesRequest build() {
return new UnbindDevicesRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindDevicesResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindDevicesResponse} extends {@link TeaModel}
*
* <p>UnbindDevicesResponse</p>
*/
public class UnbindDevicesResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UnbindDevicesResponseBody body;
private UnbindDevicesResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static UnbindDevicesResponse 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 body
*/
public UnbindDevicesResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UnbindDevicesResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(UnbindDevicesResponseBody body);
@Override
UnbindDevicesResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UnbindDevicesResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private UnbindDevicesResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UnbindDevicesResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(UnbindDevicesResponseBody body) {
this.body = body;
return this;
}
@Override
public UnbindDevicesResponse build() {
return new UnbindDevicesResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindDevicesResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindDevicesResponseBody} extends {@link TeaModel}
*
* <p>UnbindDevicesResponseBody</p>
*/
public class UnbindDevicesResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Data data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private UnbindDevicesResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static UnbindDevicesResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Data getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Data data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Data data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* Id of the request
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public UnbindDevicesResponseBody build() {
return new UnbindDevicesResponseBody(this);
}
}
public static class SubDeviceList extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Message")
private String message;
@NameInMap("SubDeviceId")
private String subDeviceId;
private SubDeviceList(Builder builder) {
this.code = builder.code;
this.message = builder.message;
this.subDeviceId = builder.subDeviceId;
}
public static Builder builder() {
return new Builder();
}
public static SubDeviceList create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return subDeviceId
*/
public String getSubDeviceId() {
return this.subDeviceId;
}
public static final class Builder {
private String code;
private String message;
private String subDeviceId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* SubDeviceId.
*/
public Builder subDeviceId(String subDeviceId) {
this.subDeviceId = subDeviceId;
return this;
}
public SubDeviceList build() {
return new SubDeviceList(this);
}
}
}
public static class Data extends TeaModel {
@NameInMap("SubDeviceList")
private java.util.List < SubDeviceList> subDeviceList;
private Data(Builder builder) {
this.subDeviceList = builder.subDeviceList;
}
public static Builder builder() {
return new Builder();
}
public static Data create() {
return builder().build();
}
/**
* @return subDeviceList
*/
public java.util.List < SubDeviceList> getSubDeviceList() {
return this.subDeviceList;
}
public static final class Builder {
private java.util.List < SubDeviceList> subDeviceList;
/**
* SubDeviceList.
*/
public Builder subDeviceList(java.util.List < SubDeviceList> subDeviceList) {
this.subDeviceList = subDeviceList;
return this;
}
public Data build() {
return new Data(this);
}
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindPersonRequest.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindPersonRequest} extends {@link RequestModel}
*
* <p>UnbindPersonRequest</p>
*/
public class UnbindPersonRequest extends Request {
@Body
@NameInMap("CorpId")
private String corpId;
@Body
@NameInMap("IsvSubId")
@Validation(required = true)
private String isvSubId;
@Body
@NameInMap("ProfileId")
@Validation(required = true, maximum = 9999999999999D, minimum = 1)
private Long profileId;
private UnbindPersonRequest(Builder builder) {
super(builder);
this.corpId = builder.corpId;
this.isvSubId = builder.isvSubId;
this.profileId = builder.profileId;
}
public static Builder builder() {
return new Builder();
}
public static UnbindPersonRequest create() {
return builder().build();
}
@Override
public Builder toBuilder() {
return new Builder(this);
}
/**
* @return corpId
*/
public String getCorpId() {
return this.corpId;
}
/**
* @return isvSubId
*/
public String getIsvSubId() {
return this.isvSubId;
}
/**
* @return profileId
*/
public Long getProfileId() {
return this.profileId;
}
public static final class Builder extends Request.Builder<UnbindPersonRequest, Builder> {
private String corpId;
private String isvSubId;
private Long profileId;
private Builder() {
super();
}
private Builder(UnbindPersonRequest response) {
super(response);
this.corpId = response.corpId;
this.isvSubId = response.isvSubId;
this.profileId = response.profileId;
}
/**
* CorpId.
*/
public Builder corpId(String corpId) {
this.putBodyParameter("CorpId", corpId);
this.corpId = corpId;
return this;
}
/**
* IsvSubId.
*/
public Builder isvSubId(String isvSubId) {
this.putBodyParameter("IsvSubId", isvSubId);
this.isvSubId = isvSubId;
return this;
}
/**
* ProfileId.
*/
public Builder profileId(Long profileId) {
this.putBodyParameter("ProfileId", profileId);
this.profileId = profileId;
return this;
}
@Override
public UnbindPersonRequest build() {
return new UnbindPersonRequest(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindPersonResponse.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindPersonResponse} extends {@link TeaModel}
*
* <p>UnbindPersonResponse</p>
*/
public class UnbindPersonResponse extends Response {
@NameInMap("headers")
@Validation(required = true)
private java.util.Map < String, String > headers;
@NameInMap("body")
@Validation(required = true)
private UnbindPersonResponseBody body;
private UnbindPersonResponse(BuilderImpl builder) {
super(builder);
this.headers = builder.headers;
this.body = builder.body;
}
public static UnbindPersonResponse 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 body
*/
public UnbindPersonResponseBody getBody() {
return this.body;
}
public interface Builder extends Response.Builder<UnbindPersonResponse, Builder> {
Builder headers(java.util.Map < String, String > headers);
Builder body(UnbindPersonResponseBody body);
@Override
UnbindPersonResponse build();
}
private static final class BuilderImpl
extends Response.BuilderImpl<UnbindPersonResponse, Builder>
implements Builder {
private java.util.Map < String, String > headers;
private UnbindPersonResponseBody body;
private BuilderImpl() {
super();
}
private BuilderImpl(UnbindPersonResponse response) {
super(response);
this.headers = response.headers;
this.body = response.body;
}
/**
* headers.
*/
@Override
public Builder headers(java.util.Map < String, String > headers) {
this.headers = headers;
return this;
}
/**
* body.
*/
@Override
public Builder body(UnbindPersonResponseBody body) {
this.body = body;
return this;
}
@Override
public UnbindPersonResponse build() {
return new UnbindPersonResponse(this);
}
}
}
|
0 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515 | java-sources/com/aliyun/alibabacloud-vcs20200515/1.0.0/com/aliyun/sdk/service/vcs20200515/models/UnbindPersonResponseBody.java | // This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sdk.service.vcs20200515.models;
import com.aliyun.core.annotation.*;
import darabonba.core.RequestModel;
import darabonba.core.TeaModel;
import com.aliyun.sdk.gateway.pop.models.*;
/**
* {@link UnbindPersonResponseBody} extends {@link TeaModel}
*
* <p>UnbindPersonResponseBody</p>
*/
public class UnbindPersonResponseBody extends TeaModel {
@NameInMap("Code")
private String code;
@NameInMap("Data")
private Boolean data;
@NameInMap("Message")
private String message;
@NameInMap("RequestId")
private String requestId;
private UnbindPersonResponseBody(Builder builder) {
this.code = builder.code;
this.data = builder.data;
this.message = builder.message;
this.requestId = builder.requestId;
}
public static Builder builder() {
return new Builder();
}
public static UnbindPersonResponseBody create() {
return builder().build();
}
/**
* @return code
*/
public String getCode() {
return this.code;
}
/**
* @return data
*/
public Boolean getData() {
return this.data;
}
/**
* @return message
*/
public String getMessage() {
return this.message;
}
/**
* @return requestId
*/
public String getRequestId() {
return this.requestId;
}
public static final class Builder {
private String code;
private Boolean data;
private String message;
private String requestId;
/**
* Code.
*/
public Builder code(String code) {
this.code = code;
return this;
}
/**
* Data.
*/
public Builder data(Boolean data) {
this.data = data;
return this;
}
/**
* Message.
*/
public Builder message(String message) {
this.message = message;
return this;
}
/**
* RequestId.
*/
public Builder requestId(String requestId) {
this.requestId = requestId;
return this;
}
public UnbindPersonResponseBody build() {
return new UnbindPersonResponseBody(this);
}
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.