pub type UserStubResponse = UserStub;Expand description
Represents the response data for a lightweight user stub. Alias for [model::UserStub].
Aliased Type§
pub struct UserStubResponse {
pub username: Option<String>,
pub avatar: Option<String>,
pub fullname: Option<String>,
pub verified: Option<bool>,
}Fields§
§username: Option<String>The user’s unique username.
avatar: Option<String>The URL for the user’s profile picture (avatar).
fullname: Option<String>The user’s full display name.
verified: Option<bool>A boolean flag indicating if the user is a verified account.