| Total Complexity | 0 | 
| Total Lines | 13 | 
| 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 enum import IntEnum  | 
            ||
| 5 | |||
| 6 | |||
| 7 | class InteractionFlags(IntEnum):  | 
            ||
| 8 | """  | 
            ||
| 9 | :param EPHEMERAL:  | 
            ||
| 10 | only the user receiving the message can see it  | 
            ||
| 11 | """  | 
            ||
| 12 | EPHEMERAL = 1 << 6  | 
            ||
| 13 |