Autogenerated update for 2ca53038ef...05f8a3b57e

This commit is contained in:
itzaname 2024-11-29 08:12:29 +00:00
parent 5bf70a6516
commit a49195e09a

View File

@ -13,7 +13,6 @@ pub struct IdMessage {
pub struct SessionUserResponse { pub struct SessionUserResponse {
#[prost(uint64, tag="1")] #[prost(uint64, tag="1")]
#[serde(rename = "UserID")] #[serde(rename = "UserID")]
#[serde(rename = "UserID")]
pub user_id: u64, pub user_id: u64,
#[prost(string, tag="2")] #[prost(string, tag="2")]
pub username: ::prost::alloc::string::String, pub username: ::prost::alloc::string::String,
@ -24,8 +23,20 @@ pub struct SessionUserResponse {
#[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)] #[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "PascalCase")] #[serde(rename_all = "PascalCase")]
pub struct RoleReponse { pub struct RoleReponse {
#[prost(uint32, tag="1")] #[prost(message, repeated, tag="1")]
pub role: u32, pub roles: ::prost::alloc::vec::Vec<RoleItem>,
}
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct RoleItem {
#[prost(string, tag="1")]
#[serde(rename = "ID")]
pub id: ::prost::alloc::string::String,
#[prost(string, tag="2")]
pub display_name: ::prost::alloc::string::String,
#[prost(int32, tag="3")]
pub rank: i32,
} }
#[allow(clippy::derive_partial_eq_without_eq)] #[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)] #[derive(Clone, PartialEq, ::prost::Message, serde::Serialize, serde::Deserialize)]