com.aliyun.pds20220301.models.Identity Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pds20220301 Show documentation
Show all versions of pds20220301 Show documentation
Alibaba Cloud pds (20220301) SDK for Java
The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.pds20220301.models;
import com.aliyun.tea.*;
public class Identity extends TeaModel {
@NameInMap("identity_id")
public String identityId;
/**
* example:
* IT_User
*/
@NameInMap("identity_type")
public String identityType;
public static Identity build(java.util.Map map) throws Exception {
Identity self = new Identity();
return TeaModel.build(map, self);
}
public Identity setIdentityId(String identityId) {
this.identityId = identityId;
return this;
}
public String getIdentityId() {
return this.identityId;
}
public Identity setIdentityType(String identityType) {
this.identityType = identityType;
return this;
}
public String getIdentityType() {
return this.identityType;
}
}