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

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

There is a newer version: 2.1.67
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 ChangeMainAdminRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

corpIdCCC

*/ @NameInMap("effectCorpId") public String effectCorpId; /** *

This parameter is required.

* * example: *

userIdAA

*/ @NameInMap("sourceUserId") public String sourceUserId; /** *

This parameter is required.

* * example: *

userIdBB

*/ @NameInMap("targetUserId") public String targetUserId; public static ChangeMainAdminRequest build(java.util.Map map) throws Exception { ChangeMainAdminRequest self = new ChangeMainAdminRequest(); return TeaModel.build(map, self); } public ChangeMainAdminRequest setEffectCorpId(String effectCorpId) { this.effectCorpId = effectCorpId; return this; } public String getEffectCorpId() { return this.effectCorpId; } public ChangeMainAdminRequest setSourceUserId(String sourceUserId) { this.sourceUserId = sourceUserId; return this; } public String getSourceUserId() { return this.sourceUserId; } public ChangeMainAdminRequest setTargetUserId(String targetUserId) { this.targetUserId = targetUserId; return this; } public String getTargetUserId() { return this.targetUserId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy