com.aliyun.dingtalkcontact_1_0.models.TransformToExclusiveAccountRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class TransformToExclusiveAccountRequest extends TeaModel {
/**
* example:
* false/true
*/
@NameInMap("idpDingTalk")
public Boolean idpDingTalk;
@NameInMap("initPassword")
public String initPassword;
@NameInMap("loginId")
public String loginId;
/**
* This parameter is required.
*
* example:
* migrate
*/
@NameInMap("transformType")
public String transformType;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static TransformToExclusiveAccountRequest build(java.util.Map map) throws Exception {
TransformToExclusiveAccountRequest self = new TransformToExclusiveAccountRequest();
return TeaModel.build(map, self);
}
public TransformToExclusiveAccountRequest setIdpDingTalk(Boolean idpDingTalk) {
this.idpDingTalk = idpDingTalk;
return this;
}
public Boolean getIdpDingTalk() {
return this.idpDingTalk;
}
public TransformToExclusiveAccountRequest setInitPassword(String initPassword) {
this.initPassword = initPassword;
return this;
}
public String getInitPassword() {
return this.initPassword;
}
public TransformToExclusiveAccountRequest setLoginId(String loginId) {
this.loginId = loginId;
return this;
}
public String getLoginId() {
return this.loginId;
}
public TransformToExclusiveAccountRequest setTransformType(String transformType) {
this.transformType = transformType;
return this;
}
public String getTransformType() {
return this.transformType;
}
public TransformToExclusiveAccountRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}