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

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

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

import com.aliyun.tea.*;

public class GroupCapacityInquiryResponseBody extends TeaModel {
    // 实际价格
    @NameInMap("actualPrice")
    public Long actualPrice;

    // 群创建时间
    @NameInMap("createdAt")
    public Long createdAt;

    // 当前容量
    @NameInMap("currentCapacity")
    public Integer currentCapacity;

    // 当前容量生效至何时
    @NameInMap("currentEffectUntil")
    public Long currentEffectUntil;

    // 折扣
    @NameInMap("discount")
    public Integer discount;

    // 扩展信息
    @NameInMap("extInfo")
    public java.util.Map extInfo;

    // 群主userId
    @NameInMap("groupOwner")
    public String groupOwner;

    // 群标题
    @NameInMap("groupTitle")
    public String groupTitle;

    // 标价
    @NameInMap("markedPrice")
    public Long markedPrice;

    // 群人数
    @NameInMap("memberCount")
    public Integer memberCount;

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

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

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

    // 目标容量生效至何时
    @NameInMap("targetEffectUntil")
    public Long targetEffectUntil;

    // 校验令牌
    @NameInMap("token")
    public String token;

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

    public GroupCapacityInquiryResponseBody setActualPrice(Long actualPrice) {
        this.actualPrice = actualPrice;
        return this;
    }
    public Long getActualPrice() {
        return this.actualPrice;
    }

    public GroupCapacityInquiryResponseBody setCreatedAt(Long createdAt) {
        this.createdAt = createdAt;
        return this;
    }
    public Long getCreatedAt() {
        return this.createdAt;
    }

    public GroupCapacityInquiryResponseBody setCurrentCapacity(Integer currentCapacity) {
        this.currentCapacity = currentCapacity;
        return this;
    }
    public Integer getCurrentCapacity() {
        return this.currentCapacity;
    }

    public GroupCapacityInquiryResponseBody setCurrentEffectUntil(Long currentEffectUntil) {
        this.currentEffectUntil = currentEffectUntil;
        return this;
    }
    public Long getCurrentEffectUntil() {
        return this.currentEffectUntil;
    }

    public GroupCapacityInquiryResponseBody setDiscount(Integer discount) {
        this.discount = discount;
        return this;
    }
    public Integer getDiscount() {
        return this.discount;
    }

    public GroupCapacityInquiryResponseBody setExtInfo(java.util.Map extInfo) {
        this.extInfo = extInfo;
        return this;
    }
    public java.util.Map getExtInfo() {
        return this.extInfo;
    }

    public GroupCapacityInquiryResponseBody setGroupOwner(String groupOwner) {
        this.groupOwner = groupOwner;
        return this;
    }
    public String getGroupOwner() {
        return this.groupOwner;
    }

    public GroupCapacityInquiryResponseBody setGroupTitle(String groupTitle) {
        this.groupTitle = groupTitle;
        return this;
    }
    public String getGroupTitle() {
        return this.groupTitle;
    }

    public GroupCapacityInquiryResponseBody setMarkedPrice(Long markedPrice) {
        this.markedPrice = markedPrice;
        return this;
    }
    public Long getMarkedPrice() {
        return this.markedPrice;
    }

    public GroupCapacityInquiryResponseBody setMemberCount(Integer memberCount) {
        this.memberCount = memberCount;
        return this;
    }
    public Integer getMemberCount() {
        return this.memberCount;
    }

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

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

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

    public GroupCapacityInquiryResponseBody setTargetEffectUntil(Long targetEffectUntil) {
        this.targetEffectUntil = targetEffectUntil;
        return this;
    }
    public Long getTargetEffectUntil() {
        return this.targetEffectUntil;
    }

    public GroupCapacityInquiryResponseBody setToken(String token) {
        this.token = token;
        return this;
    }
    public String getToken() {
        return this.token;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy