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

com.aliyun.dingtalkhrm_1_0.models.RosterMetaFieldOptionsUpdateRequest 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.dingtalkhrm_1_0.models;

import com.aliyun.tea.*;

public class RosterMetaFieldOptionsUpdateRequest extends TeaModel {
    @NameInMap("appAgentId")
    public Long appAgentId;

    /**
     * 

This parameter is required.

* * example: *

sys05-contractType

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

This parameter is required.

* * example: *

sys05

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

This parameter is required.

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

This parameter is required.

* * example: *

OPTIONS_ADD

*/ @NameInMap("modifyType") public String modifyType; public static RosterMetaFieldOptionsUpdateRequest build(java.util.Map map) throws Exception { RosterMetaFieldOptionsUpdateRequest self = new RosterMetaFieldOptionsUpdateRequest(); return TeaModel.build(map, self); } public RosterMetaFieldOptionsUpdateRequest setAppAgentId(Long appAgentId) { this.appAgentId = appAgentId; return this; } public Long getAppAgentId() { return this.appAgentId; } public RosterMetaFieldOptionsUpdateRequest setFieldCode(String fieldCode) { this.fieldCode = fieldCode; return this; } public String getFieldCode() { return this.fieldCode; } public RosterMetaFieldOptionsUpdateRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public RosterMetaFieldOptionsUpdateRequest setLabels(java.util.List labels) { this.labels = labels; return this; } public java.util.List getLabels() { return this.labels; } public RosterMetaFieldOptionsUpdateRequest setModifyType(String modifyType) { this.modifyType = modifyType; return this; } public String getModifyType() { return this.modifyType; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy