com.antgroup.antchain.openapi.deps.models.AppTechstackRelation 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 AppTechstackRelation extends TeaModel {
// appId
@NameInMap("app_id")
public String appId;
// buildpackArch
@NameInMap("buildpack_arch")
public String buildpackArch;
// creationTime
@NameInMap("creation_time")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}[Z]")
public String creationTime;
// extraInfo
@NameInMap("extra_info")
public String extraInfo;
// id
@NameInMap("id")
public String id;
// modificationTime
@NameInMap("modification_time")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}[Z]")
public String modificationTime;
// techstackId
@NameInMap("techstack_id")
public Long techstackId;
// techstackIdentity
@NameInMap("techstack_identity")
public String techstackIdentity;
// techstackName
@NameInMap("techstack_name")
public String techstackName;
public static AppTechstackRelation build(java.util.Map map) throws Exception {
AppTechstackRelation self = new AppTechstackRelation();
return TeaModel.build(map, self);
}
public AppTechstackRelation setAppId(String appId) {
this.appId = appId;
return this;
}
public String getAppId() {
return this.appId;
}
public AppTechstackRelation setBuildpackArch(String buildpackArch) {
this.buildpackArch = buildpackArch;
return this;
}
public String getBuildpackArch() {
return this.buildpackArch;
}
public AppTechstackRelation setCreationTime(String creationTime) {
this.creationTime = creationTime;
return this;
}
public String getCreationTime() {
return this.creationTime;
}
public AppTechstackRelation setExtraInfo(String extraInfo) {
this.extraInfo = extraInfo;
return this;
}
public String getExtraInfo() {
return this.extraInfo;
}
public AppTechstackRelation setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public AppTechstackRelation setModificationTime(String modificationTime) {
this.modificationTime = modificationTime;
return this;
}
public String getModificationTime() {
return this.modificationTime;
}
public AppTechstackRelation setTechstackId(Long techstackId) {
this.techstackId = techstackId;
return this;
}
public Long getTechstackId() {
return this.techstackId;
}
public AppTechstackRelation setTechstackIdentity(String techstackIdentity) {
this.techstackIdentity = techstackIdentity;
return this;
}
public String getTechstackIdentity() {
return this.techstackIdentity;
}
public AppTechstackRelation setTechstackName(String techstackName) {
this.techstackName = techstackName;
return this;
}
public String getTechstackName() {
return this.techstackName;
}
}