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

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

There is a newer version: 2.1.88
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkhrbrain_1_0.models;

import com.aliyun.tea.*;

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

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

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

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

        /**
         * 

This parameter is required.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy