@@ -1387,7 +1387,7 @@ async def forward_message(
1387
1387
The object or ID of the message to forward.
1388
1388
channel_from
1389
1389
The object or ID of the message's channel of origin.
1390
- This field will be ignored if the message provided is a (partial) message object rather than a snowflake .
1390
+ This field will be ignored if the message provided is of type [`hikari.messages.PartialMessage`][] rather than [`hikari.snowflakes.Snowflakeish`][] .
1391
1391
1392
1392
Returns
1393
1393
-------
@@ -1397,19 +1397,19 @@ async def forward_message(
1397
1397
Raises
1398
1398
------
1399
1399
ValueError
1400
- if the message is not an object and channel_from was not provided.
1400
+ If the message is of type [`hikari.snowflakes.Snowflakeish`][] and ` channel_from` was not provided.
1401
1401
hikari.errors.UnauthorizedError
1402
1402
If you are unauthorized to make the request (invalid/missing token).
1403
1403
hikari.errors.ForbiddenError
1404
1404
If you tried to forward a message without
1405
- the [hikari.permissions.Permissions.VIEW_CHANNEL] or [hikari.permissions.Permissions.SEND_MESSAGES] .
1405
+ the [` hikari.permissions.Permissions.VIEW_CHANNEL`][] or [` hikari.permissions.Permissions.SEND_MESSAGES`][] permissions .
1406
1406
hikari.errors.NotFoundError
1407
- If the channel or message is not found.
1407
+ If the channel or message was not found.
1408
1408
hikari.errors.RateLimitTooLongError
1409
1409
Raised in the event that a rate limit occurs that is
1410
1410
longer than `max_rate_limit` when making a request.
1411
1411
hikari.errors.InternalServerError
1412
- If an internal error occurs on Discord while handling the request.
1412
+ If an internal error occurs on Discords side while handling the request.
1413
1413
"""
1414
1414
1415
1415
@abc .abstractmethod
0 commit comments