mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-14 05:57:32 -07:00
91dddc439f
This resolves possible confusion between iceshrimp-js (this project) and iceshrimp-sdk (the package)
57 lines
1.8 KiB
Markdown
57 lines
1.8 KiB
Markdown
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
|
|
[Home](./index.md) > [iceshrimp-sdk](./iceshrimp-sdk.md) > [entities](./iceshrimp-sdk.entities.md) > [UserDetailed](./iceshrimp-sdk.entities.userdetailed.md)
|
|
|
|
## entities.UserDetailed type
|
|
|
|
**Signature:**
|
|
|
|
```typescript
|
|
export type UserDetailed = UserLite & {
|
|
bannerBlurhash: string | null;
|
|
bannerColor: string | null;
|
|
bannerUrl: string | null;
|
|
birthday: string | null;
|
|
createdAt: DateString;
|
|
description: string | null;
|
|
ffVisibility: "public" | "followers" | "private";
|
|
fields: {
|
|
name: string;
|
|
value: string;
|
|
verified?: boolean;
|
|
}[];
|
|
followersCount: number;
|
|
followingCount: number;
|
|
hasPendingFollowRequestFromYou: boolean;
|
|
hasPendingFollowRequestToYou: boolean;
|
|
isAdmin: boolean;
|
|
isBlocked: boolean;
|
|
isBlocking: boolean;
|
|
isBot: boolean;
|
|
isCat: boolean;
|
|
isFollowed: boolean;
|
|
isFollowing: boolean;
|
|
isLocked: boolean;
|
|
isModerator: boolean;
|
|
isMuted: boolean;
|
|
isRenoteMuted: boolean;
|
|
isSilenced: boolean;
|
|
isSuspended: boolean;
|
|
lang: string | null;
|
|
lastFetchedAt?: DateString;
|
|
location: string | null;
|
|
notesCount: number;
|
|
pinnedNoteIds: ID[];
|
|
pinnedNotes: Note[];
|
|
pinnedPage: Page | null;
|
|
pinnedPageId: string | null;
|
|
publicReactions: boolean;
|
|
securityKeys: boolean;
|
|
twoFactorEnabled: boolean;
|
|
updatedAt: DateString | null;
|
|
uri: string | null;
|
|
url: string | null;
|
|
};
|
|
```
|
|
**References:** [UserLite](./iceshrimp-sdk.entities.userlite.md)<!-- -->, [DateString](./iceshrimp-sdk.entities.datestring.md)<!-- -->, [ID](./iceshrimp-sdk.entities.id.md)<!-- -->, [Note](./iceshrimp-sdk.entities.note.md)<!-- -->, [Page](./iceshrimp-sdk.entities.page.md)
|
|
|