mirror of
https://iceshrimp.dev/limepotato/jormungandr-bite.git
synced 2024-11-22 09:57:29 -07:00
53 lines
1.6 KiB
Markdown
53 lines
1.6 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) > [Note](./iceshrimp-sdk.entities.note.md)
|
||
|
|
||
|
## entities.Note type
|
||
|
|
||
|
**Signature:**
|
||
|
|
||
|
```typescript
|
||
|
export type Note = {
|
||
|
id: ID;
|
||
|
createdAt: DateString;
|
||
|
text: string | null;
|
||
|
cw: string | null;
|
||
|
user: User;
|
||
|
userId: User["id"];
|
||
|
reply?: Note;
|
||
|
replyId: Note["id"];
|
||
|
renote?: Note;
|
||
|
renoteId: Note["id"];
|
||
|
files: DriveFile[];
|
||
|
fileIds: DriveFile["id"][];
|
||
|
visibility: "public" | "home" | "followers" | "specified";
|
||
|
visibleUserIds?: User["id"][];
|
||
|
localOnly?: boolean;
|
||
|
channel?: Channel["id"];
|
||
|
myReaction?: string;
|
||
|
isRenoted?: boolean;
|
||
|
reactions: Record<string, number>;
|
||
|
renoteCount: number;
|
||
|
repliesCount: number;
|
||
|
poll?: {
|
||
|
expiresAt: DateString | null;
|
||
|
multiple: boolean;
|
||
|
choices: {
|
||
|
isVoted: boolean;
|
||
|
text: string;
|
||
|
votes: number;
|
||
|
}[];
|
||
|
};
|
||
|
emojis: {
|
||
|
name: string;
|
||
|
url: string;
|
||
|
}[];
|
||
|
uri?: string;
|
||
|
url?: string;
|
||
|
updatedAt?: DateString;
|
||
|
isHidden?: boolean;
|
||
|
};
|
||
|
```
|
||
|
**References:** [ID](./iceshrimp-sdk.entities.id.md)<!-- -->, [DateString](./iceshrimp-sdk.entities.datestring.md)<!-- -->, [User](./iceshrimp-sdk.entities.user.md)<!-- -->, [Note](./iceshrimp-sdk.entities.note.md)<!-- -->, [DriveFile](./iceshrimp-sdk.entities.drivefile.md)<!-- -->, [Channel](./iceshrimp-sdk.entities.channel.md)
|
||
|
|