com.antgroup.antchain.openapi.deps.models.Cloud Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of openapi-deps Show documentation
Show all versions of openapi-deps Show documentation
Ant Chain deps SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.deps.models;
import com.aliyun.tea.*;
public class Cloud extends TeaModel {
// id
@NameInMap("id")
public Long id;
// identity
@NameInMap("identity")
public String identity;
// name
@NameInMap("name")
public String name;
// platforms
@NameInMap("platforms")
public java.util.List platforms;
public static Cloud build(java.util.Map map) throws Exception {
Cloud self = new Cloud();
return TeaModel.build(map, self);
}
public Cloud setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public Cloud setIdentity(String identity) {
this.identity = identity;
return this;
}
public String getIdentity() {
return this.identity;
}
public Cloud setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public Cloud setPlatforms(java.util.List platforms) {
this.platforms = platforms;
return this;
}
public java.util.List getPlatforms() {
return this.platforms;
}
}