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

com.aliyun.dingtalkcontact_1_0.models.TransformToExclusiveAccountRequest Maven / Gradle / Ivy

There is a newer version: 2.1.30
Show newest version
// 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 {
    // idpDingTalk
    @NameInMap("idpDingTalk")
    public Boolean idpDingTalk;

    // initPassword
    @NameInMap("initPassword")
    public String initPassword;

    // loginId
    @NameInMap("loginId")
    public String loginId;

    // transformType
    @NameInMap("transformType")
    public String transformType;

    // userId
    @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;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy