| | |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonInclude; |
| | | import com.fasterxml.jackson.annotation.JsonProperty; |
| | | import com.sun.istack.internal.NotNull; |
| | | import lombok.AllArgsConstructor; |
| | | import lombok.Builder; |
| | | import lombok.Data; |
| | | import lombok.NoArgsConstructor; |
| | | |
| | | import javax.validation.constraints.Max; |
| | | import javax.validation.constraints.Min; |
| | |
| | | |
| | | @Data |
| | | @Builder |
| | | @NoArgsConstructor // 添加无参构造函数 |
| | | @AllArgsConstructor // 添加全参构造函数(这样Builder也可以工作) |
| | | public class AddTeamMembersRequest { |
| | | |
| | | private String groupId;//群id |
| | | |
| | | private Integer number;//拉人数量 拉人为自动拉虚拟注册的用户;如果填写了云信账号数量无效(最大支持99人) |
| | | |
| | | /** |
| | | * 邀请入群的成员账号ID列表,必填 |
| | | */ |