mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-07-13 15:14:48 -06:00
9 lines
222 B
Python
9 lines
222 B
Python
from enum import Enum
|
|
|
|
class PresenceStatus(Enum):
|
|
AVAILABLE = "available"
|
|
UNAVAILABLE = "unavailable"
|
|
|
|
class PresenceConfig:
|
|
def __init__(self, presence: PresenceStatus):
|
|
self.presence = presence.value |