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

com.aliyun.dingtalkcrm_1_0.models.OverrideUpdateCustomerDataAuthRequest 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.dingtalkcrm_1_0.models;

import com.aliyun.tea.*;

public class OverrideUpdateCustomerDataAuthRequest extends TeaModel {
    /**
     * 

This parameter is required.

*/ @NameInMap("customerIds") public java.util.List customerIds; /** *

This parameter is required.

*/ @NameInMap("dataAuthUserIds") public java.util.List dataAuthUserIds; /** * example: *

PROC-98187D45-EFC0-4FC4-887E-45BD24209D69

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

This parameter is required.

* * example: *

staffId2

*/ @NameInMap("operateUserId") public String operateUserId; /** * example: *

crm_customer

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

This parameter is required.

* * example: *

owner

*/ @NameInMap("roleType") public String roleType; public static OverrideUpdateCustomerDataAuthRequest build(java.util.Map map) throws Exception { OverrideUpdateCustomerDataAuthRequest self = new OverrideUpdateCustomerDataAuthRequest(); return TeaModel.build(map, self); } public OverrideUpdateCustomerDataAuthRequest setCustomerIds(java.util.List customerIds) { this.customerIds = customerIds; return this; } public java.util.List getCustomerIds() { return this.customerIds; } public OverrideUpdateCustomerDataAuthRequest setDataAuthUserIds(java.util.List dataAuthUserIds) { this.dataAuthUserIds = dataAuthUserIds; return this; } public java.util.List getDataAuthUserIds() { return this.dataAuthUserIds; } public OverrideUpdateCustomerDataAuthRequest setFormCode(String formCode) { this.formCode = formCode; return this; } public String getFormCode() { return this.formCode; } public OverrideUpdateCustomerDataAuthRequest setOperateUserId(String operateUserId) { this.operateUserId = operateUserId; return this; } public String getOperateUserId() { return this.operateUserId; } public OverrideUpdateCustomerDataAuthRequest setRelationType(String relationType) { this.relationType = relationType; return this; } public String getRelationType() { return this.relationType; } public OverrideUpdateCustomerDataAuthRequest setRoleType(String roleType) { this.roleType = roleType; return this; } public String getRoleType() { return this.roleType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy