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

com.antgroup.antchain.openapi.deps.models.GetApplicationRepositoryResponse 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 GetApplicationRepositoryResponse extends TeaModel {
    @NameInMap("req_msg_id")
    public String reqMsgId;

    @NameInMap("result_code")
    public String resultCode;

    @NameInMap("result_msg")
    public String resultMsg;

    // 代码库信息
    @NameInMap("repository")
    public Repository repository;

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

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

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

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

    public GetApplicationRepositoryResponse setRepository(Repository repository) {
        this.repository = repository;
        return this;
    }
    public Repository getRepository() {
        return this.repository;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy