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

io.gitee.huangguiming.Imcode.param.CreateGroupParam Maven / Gradle / Ivy

There is a newer version: 1.0.4
Show newest version
package io.gitee.huangguiming.Imcode.param;

import lombok.Data;

/**
 * 仅包含群基础信息
 * 创建群,并指定群简介、群公告等群基础信息。
 */
@Data
public class CreateGroupParam extends CreateGroupAbstractParam{

    /**
     * 群主id 选填
     */
    private String Owner_Account;

    /**
     * 群简介 选填
     */
    private String Introduction;

    /**
     * 群公告 选填
     */
    private String Notification;

    /**
     * 群头像 选填
     */
    private String FaceUrl;

    /**
     * 最大群成员 选填写
     */
    private Integer MaxMemberCount;

    /**
     * 申请加入群方式 选填  不填默认为需要验证
     */
    private String ApplyJoinOption;

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy