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

cn.blankcat.dto.websocket.WSIdentityData Maven / Gradle / Ivy

There is a newer version: 2.1.3
Show newest version
package cn.blankcat.dto.websocket;

import com.fasterxml.jackson.annotation.JsonIgnoreProperties;
import lombok.AllArgsConstructor;
import lombok.Data;
import lombok.NoArgsConstructor;

import java.util.List;

@Data
@AllArgsConstructor
@NoArgsConstructor
@JsonIgnoreProperties(ignoreUnknown = true)
// WSIdentityData 鉴权数据
public class WSIdentityData {
    private String token;
    private int intents;
    private List shard;
    private WSIdentityDataProperties properties;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy