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

com.aliyun.dingtalkim_1_0.models.GroupCapacityInquiryRequest Maven / Gradle / Ivy

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

import com.aliyun.tea.*;

public class GroupCapacityInquiryRequest extends TeaModel {
    // 有效生命周期
    @NameInMap("effectiveDuration")
    public String effectiveDuration;

    // 开放的群id
    @NameInMap("openConversationId")
    public String openConversationId;

    // 当前操作人工号
    @NameInMap("operator")
    public String operator;

    // 扩展参数
    @NameInMap("options")
    public java.util.Map options;

    // 目标容量
    @NameInMap("targetCapacity")
    public Integer targetCapacity;

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

    public GroupCapacityInquiryRequest setEffectiveDuration(String effectiveDuration) {
        this.effectiveDuration = effectiveDuration;
        return this;
    }
    public String getEffectiveDuration() {
        return this.effectiveDuration;
    }

    public GroupCapacityInquiryRequest setOpenConversationId(String openConversationId) {
        this.openConversationId = openConversationId;
        return this;
    }
    public String getOpenConversationId() {
        return this.openConversationId;
    }

    public GroupCapacityInquiryRequest setOperator(String operator) {
        this.operator = operator;
        return this;
    }
    public String getOperator() {
        return this.operator;
    }

    public GroupCapacityInquiryRequest setOptions(java.util.Map options) {
        this.options = options;
        return this;
    }
    public java.util.Map getOptions() {
        return this.options;
    }

    public GroupCapacityInquiryRequest setTargetCapacity(Integer targetCapacity) {
        this.targetCapacity = targetCapacity;
        return this;
    }
    public Integer getTargetCapacity() {
        return this.targetCapacity;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy