All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.huaweicloud.sdk.cloudtest.v1.model.BatchDeleteTestCaseRequestBody Maven / Gradle / Ivy

There is a newer version: 3.1.114
Show newest version
package com.huaweicloud.sdk.cloudtest.v1.model;

import com.fasterxml.jackson.annotation.JsonInclude;
import com.fasterxml.jackson.annotation.JsonProperty;

import java.util.ArrayList;
import java.util.List;
import java.util.Objects;
import java.util.function.Consumer;

/**
 * 批量删除测试用例请求体
 */
public class BatchDeleteTestCaseRequestBody {

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "service_id")

    private Integer serviceId;

    @JsonInclude(JsonInclude.Include.NON_NULL)
    @JsonProperty(value = "testcase_id_list")

    private List testcaseIdList = null;

    public BatchDeleteTestCaseRequestBody withServiceId(Integer serviceId) {
        this.serviceId = serviceId;
        return this;
    }

    /**
     * 注册测试类型服务接口返回的服务id,取值范围为10-9999
     * @return serviceId
     */
    public Integer getServiceId() {
        return serviceId;
    }

    public void setServiceId(Integer serviceId) {
        this.serviceId = serviceId;
    }

    public BatchDeleteTestCaseRequestBody withTestcaseIdList(List testcaseIdList) {
        this.testcaseIdList = testcaseIdList;
        return this;
    }

    public BatchDeleteTestCaseRequestBody addTestcaseIdListItem(String testcaseIdListItem) {
        if (this.testcaseIdList == null) {
            this.testcaseIdList = new ArrayList<>();
        }
        this.testcaseIdList.add(testcaseIdListItem);
        return this;
    }

    public BatchDeleteTestCaseRequestBody withTestcaseIdList(Consumer> testcaseIdListSetter) {
        if (this.testcaseIdList == null) {
            this.testcaseIdList = new ArrayList<>();
        }
        testcaseIdListSetter.accept(this.testcaseIdList);
        return this;
    }

    /**
     * 测试用例唯一标识,数组长度小于50个
     * @return testcaseIdList
     */
    public List getTestcaseIdList() {
        return testcaseIdList;
    }

    public void setTestcaseIdList(List testcaseIdList) {
        this.testcaseIdList = testcaseIdList;
    }

    @Override
    public boolean equals(java.lang.Object obj) {
        if (this == obj) {
            return true;
        }
        if (obj == null || getClass() != obj.getClass()) {
            return false;
        }
        BatchDeleteTestCaseRequestBody that = (BatchDeleteTestCaseRequestBody) obj;
        return Objects.equals(this.serviceId, that.serviceId)
            && Objects.equals(this.testcaseIdList, that.testcaseIdList);
    }

    @Override
    public int hashCode() {
        return Objects.hash(serviceId, testcaseIdList);
    }

    @Override
    public String toString() {
        StringBuilder sb = new StringBuilder();
        sb.append("class BatchDeleteTestCaseRequestBody {\n");
        sb.append("    serviceId: ").append(toIndentedString(serviceId)).append("\n");
        sb.append("    testcaseIdList: ").append(toIndentedString(testcaseIdList)).append("\n");
        sb.append("}");
        return sb.toString();
    }

    /**
     * Convert the given object to string with each line indented by 4 spaces
     * (except the first line).
     */
    private String toIndentedString(java.lang.Object o) {
        if (o == null) {
            return "null";
        }
        return o.toString().replace("\n", "\n    ");
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy