All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.pds20220301.models.Identity Maven / Gradle / Ivy

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; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy