chore: NoteChannelモデルを更新

pull/109/head
yupix 8 months ago
parent 2ec1093fda
commit 8f7ed4f33c
No known key found for this signature in database
GPG Key ID: 2FF705F5C56D9C06

@ -195,6 +195,17 @@ class NoteChannel:
"""
return self.__raw_note_channel["allow_renote_to_external"]
@property
def user_id(self) -> str | None:
"""note channelUserId
Returns
-------
str | None
note channelUserId
"""
return self.__raw_note_channel["user_id"]
class Note:
"""Noteモデル

@ -56,6 +56,7 @@ class INoteChannel(TypedDict):
color: str
is_sensitive: bool
allow_renote_to_external: bool
user_id: str | None
class INote(TypedDict):

Loading…
Cancel
Save