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

com.aliyun.dingtalkhrbrain_1_0.models.HrbrainDeleteLabelInventoryRequest 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 HrbrainDeleteLabelInventoryRequest extends TeaModel {
    @NameInMap("params")
    public java.util.List params;

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

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

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

        @NameInMap("period")
        public String period;

        /**
         * 

This parameter is required.

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy