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

com.aliyun.dingtalkhrbrain_1_0.models.HrbrainDeletetLabelBaseRequest Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrbrain_1_0.models;

import com.aliyun.tea.*;

public class HrbrainDeletetLabelBaseRequest extends TeaModel {
    @NameInMap("params")
    public java.util.List params;

    public static HrbrainDeletetLabelBaseRequest build(java.util.Map map) throws Exception {
        HrbrainDeletetLabelBaseRequest self = new HrbrainDeletetLabelBaseRequest();
        return TeaModel.build(map, self);
    }

    public HrbrainDeletetLabelBaseRequest setParams(java.util.List params) {
        this.params = params;
        return this;
    }
    public java.util.List getParams() {
        return this.params;
    }

    public static class HrbrainDeletetLabelBaseRequestParams extends TeaModel {
        @NameInMap("label")
        public java.util.Map label;

        /**
         * 

This parameter is required.

*/ @NameInMap("workNo") public String workNo; public static HrbrainDeletetLabelBaseRequestParams build(java.util.Map map) throws Exception { HrbrainDeletetLabelBaseRequestParams self = new HrbrainDeletetLabelBaseRequestParams(); return TeaModel.build(map, self); } public HrbrainDeletetLabelBaseRequestParams setLabel(java.util.Map label) { this.label = label; return this; } public java.util.Map getLabel() { return this.label; } public HrbrainDeletetLabelBaseRequestParams setWorkNo(String workNo) { this.workNo = workNo; return this; } public String getWorkNo() { return this.workNo; } } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy