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

com.antgroup.antchain.openapi.rms.models.AgentVersion Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.rms.models;

import com.aliyun.tea.*;

public class AgentVersion extends TeaModel {
    // 版本号
    @NameInMap("version")
    @Validation(required = true)
    public String version;

    // 存储url
    @NameInMap("url")
    @Validation(required = true)
    public String url;

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

    public AgentVersion setVersion(String version) {
        this.version = version;
        return this;
    }
    public String getVersion() {
        return this.version;
    }

    public AgentVersion setUrl(String url) {
        this.url = url;
        return this;
    }
    public String getUrl() {
        return this.url;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy