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

com.antgroup.antchain.openapi.deps.models.CreateBuildpacknewResponse Maven / Gradle / Ivy

There is a newer version: 3.2.40
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;

import com.aliyun.tea.*;

public class CreateBuildpacknewResponse extends TeaModel {
    @NameInMap("req_msg_id")
    public String reqMsgId;

    @NameInMap("result_code")
    public String resultCode;

    @NameInMap("result_msg")
    public String resultMsg;

    // buildpack_id
    // 
    @NameInMap("buildpack_id")
    public String buildpackId;

    // upload_endpoints
    // 
    @NameInMap("upload_endpoints")
    public java.util.List uploadEndpoints;

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

    public CreateBuildpacknewResponse setReqMsgId(String reqMsgId) {
        this.reqMsgId = reqMsgId;
        return this;
    }
    public String getReqMsgId() {
        return this.reqMsgId;
    }

    public CreateBuildpacknewResponse setResultCode(String resultCode) {
        this.resultCode = resultCode;
        return this;
    }
    public String getResultCode() {
        return this.resultCode;
    }

    public CreateBuildpacknewResponse setResultMsg(String resultMsg) {
        this.resultMsg = resultMsg;
        return this;
    }
    public String getResultMsg() {
        return this.resultMsg;
    }

    public CreateBuildpacknewResponse setBuildpackId(String buildpackId) {
        this.buildpackId = buildpackId;
        return this;
    }
    public String getBuildpackId() {
        return this.buildpackId;
    }

    public CreateBuildpacknewResponse setUploadEndpoints(java.util.List uploadEndpoints) {
        this.uploadEndpoints = uploadEndpoints;
        return this;
    }
    public java.util.List getUploadEndpoints() {
        return this.uploadEndpoints;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy