10
10
def _add_reaction (cls , reaction , note_id = None ) -> bool :
11
11
"""
12
12
指定したnoteに指定したリアクションを付与します(内部用
13
+
13
14
Parameters
14
15
----------
15
16
cls
@@ -21,7 +22,8 @@ def _add_reaction(cls, reaction, note_id=None) -> bool:
21
22
22
23
Returns
23
24
-------
24
-
25
+ status: bool
26
+ 成功したならTrue,失敗ならFalse
25
27
"""
26
28
27
29
if note_id :
@@ -61,6 +63,7 @@ async def delete(self) -> bool:
61
63
async def add_reaction (self , reaction : str , note_id : str = None ) -> bool :
62
64
"""
63
65
指定したnoteに指定したリアクションを付与します
66
+
64
67
Parameters
65
68
----------
66
69
reaction : str
@@ -70,7 +73,8 @@ async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
70
73
71
74
Returns
72
75
-------
73
-
76
+ func: bool
77
+ 成功したならTrue,失敗ならFalse
74
78
"""
75
79
set_auth_i (self .note , self .auth_i , True )
76
80
return _add_reaction (self .note , reaction , note_id )
@@ -83,6 +87,22 @@ def __init__(self, data):
83
87
84
88
85
89
class Note (object ):
90
+ """
91
+
92
+ Methods
93
+ -------
94
+ add_file(file_id, path, name)
95
+ ファイルをノートに添付します
96
+ add_poll(data, item, expires_at, expired_after)
97
+ アンケートをノートに追加します
98
+ add_reaction(reaction, note_id)
99
+ ノートにリアクションを追加します
100
+ send()
101
+ ノートを送信します
102
+ delete(id)
103
+ 指定されたノートを削除します
104
+ """
105
+
86
106
def __init__ (self ,
87
107
id_ : str = None ,
88
108
created_at : str = None ,
@@ -249,6 +269,7 @@ def add_poll(self, data: list = None, item: str = '', expires_at: int = None, ex
249
269
async def add_reaction (self , reaction : str , note_id : str = None ) -> bool :
250
270
"""
251
271
指定したnoteに指定したリアクションを付与します
272
+
252
273
Parameters
253
274
----------
254
275
reaction : str
@@ -258,7 +279,8 @@ async def add_reaction(self, reaction: str, note_id: str = None) -> bool:
258
279
259
280
Returns
260
281
-------
261
-
282
+ func: bool
283
+ 成功したならTrue,失敗ならFalse
262
284
"""
263
285
264
286
return _add_reaction (self , reaction , note_id )
@@ -295,6 +317,11 @@ def __init__(self, data):
295
317
296
318
297
319
class ReactionNote (object ):
320
+ """
321
+ Attributes
322
+ ----------
323
+ data : dict
324
+ """
298
325
def __init__ (self , data ):
299
326
self .reaction = data ['body' ].get ('reaction' )
300
327
self .user_id = data ['body' ].get ('userId' )
0 commit comments