
com.antgroup.antchain.openapi.cas.models.UserDTO 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 UserDTO extends TeaModel {
// 用户ID
@NameInMap("id")
public String id;
// 创建时间
@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;
// 客户ID
@NameInMap("customer_id")
public String customerId;
// 用户类型
@NameInMap("type")
public String type;
// 用户显示名称
@NameInMap("real_name")
public String realName;
// 用户名
@NameInMap("name")
public String name;
public static UserDTO build(java.util.Map map) throws Exception {
UserDTO self = new UserDTO();
return TeaModel.build(map, self);
}
public UserDTO setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public UserDTO setUtcCreate(String utcCreate) {
this.utcCreate = utcCreate;
return this;
}
public String getUtcCreate() {
return this.utcCreate;
}
public UserDTO setUtcModified(String utcModified) {
this.utcModified = utcModified;
return this;
}
public String getUtcModified() {
return this.utcModified;
}
public UserDTO setCustomerId(String customerId) {
this.customerId = customerId;
return this;
}
public String getCustomerId() {
return this.customerId;
}
public UserDTO setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public UserDTO setRealName(String realName) {
this.realName = realName;
return this;
}
public String getRealName() {
return this.realName;
}
public UserDTO setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy