11 lines
196 B
Python
11 lines
196 B
Python
from enum import Enum
|
|
|
|
|
|
class ReplicationPackageStatusEnum(Enum):
|
|
CANCELLED = -4
|
|
TIMEDOUT = -3
|
|
ERROR = -2
|
|
SENT_REQUEST_TO_CHILD = 1
|
|
SENT_PACKAGE_TO_CHILD = 2
|
|
COMPLETED = 3
|