Total Complexity | 0 |
Total Lines | 27 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | # Copyright Pincer 2021-Present |
||
|
|||
2 | # Full MIT License can be found in `LICENSE` at the project root. |
||
3 | |||
4 | from __future__ import annotations |
||
5 | |||
6 | from dataclasses import dataclass |
||
7 | from typing import TYPE_CHECKING |
||
8 | |||
9 | from ...utils import APIObject |
||
10 | |||
11 | if TYPE_CHECKING: |
||
12 | from ...utils import Snowflake |
||
13 | |||
14 | |||
15 | @dataclass |
||
16 | class FollowedChannel(APIObject): |
||
17 | """Represents a Discord Followed Channel object |
||
18 | |||
19 | :param channel_id: |
||
20 | source channel id |
||
21 | |||
22 | :param webhook_id: |
||
23 | created target webhook id |
||
24 | """ |
||
25 | channel_id: Snowflake |
||
26 | webhook_id: Snowflake |
||
27 |