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