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

com.aliyun.amptest20201230.models.HuichengTestGrayThirdResponseBody Maven / Gradle / Ivy

There is a newer version: 6.5.6
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.amptest20201230.models;

import com.aliyun.tea.*;

public class HuichengTestGrayThirdResponseBody extends TeaModel {
    @NameInMap("RequestId")
    public String requestId;

    @NameInMap("Size")
    public Integer size;

    @NameInMap("Value")
    public String value;

    public static HuichengTestGrayThirdResponseBody build(java.util.Map map) throws Exception {
        HuichengTestGrayThirdResponseBody self = new HuichengTestGrayThirdResponseBody();
        return TeaModel.build(map, self);
    }

    public HuichengTestGrayThirdResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public HuichengTestGrayThirdResponseBody setSize(Integer size) {
        this.size = size;
        return this;
    }
    public Integer getSize() {
        return this.size;
    }

    public HuichengTestGrayThirdResponseBody setValue(String value) {
        this.value = value;
        return this;
    }
    public String getValue() {
        return this.value;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy