com.antgroup.antchain.openapi.cas.models.AppLevel Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.antgroup.antchain.openapi.cas.models;
import com.aliyun.tea.*;
public class AppLevel extends TeaModel {
// ID
@NameInMap("id")
@Validation(required = true)
public String id;
// 应用等级名称
@NameInMap("name")
public String name;
// 创建者
@NameInMap("creator_id")
public String creatorId;
// 租户ID
@NameInMap("tenant_id")
public String tenantId;
// 创建时间
@NameInMap("utc_create")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
public String utcCreate;
// 最近修改时间
@NameInMap("utc_modified")
@Validation(pattern = "\\d{4}[-]\\d{1,2}[-]\\d{1,2}[T]\\d{2}:\\d{2}:\\d{2}([Z]|([\\.]\\d{1,9})?[\\+]\\d{2}[\\:]?\\d{2})")
public String utcModified;
public static AppLevel build(java.util.Map map) throws Exception {
AppLevel self = new AppLevel();
return TeaModel.build(map, self);
}
public AppLevel setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public AppLevel setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public AppLevel setCreatorId(String creatorId) {
this.creatorId = creatorId;
return this;
}
public String getCreatorId() {
return this.creatorId;
}
public AppLevel setTenantId(String tenantId) {
this.tenantId = tenantId;
return this;
}
public String getTenantId() {
return this.tenantId;
}
public AppLevel setUtcCreate(String utcCreate) {
this.utcCreate = utcCreate;
return this;
}
public String getUtcCreate() {
return this.utcCreate;
}
public AppLevel setUtcModified(String utcModified) {
this.utcModified = utcModified;
return this;
}
public String getUtcModified() {
return this.utcModified;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy