mirror of
https://github.com/EvolutionAPI/evolution-client-python.git
synced 2025-12-21 21:02:20 -06:00
adjusts in package
This commit is contained in:
9
build/lib/evolutionapi/models/presence.py
Normal file
9
build/lib/evolutionapi/models/presence.py
Normal file
@@ -0,0 +1,9 @@
|
||||
from enum import Enum
|
||||
|
||||
class PresenceStatus(Enum):
|
||||
AVAILABLE = "available"
|
||||
UNAVAILABLE = "unavailable"
|
||||
|
||||
class PresenceConfig:
|
||||
def __init__(self, presence: PresenceStatus):
|
||||
self.presence = presence.value
|
||||
Reference in New Issue
Block a user