24 lines
501 B
Python
24 lines
501 B
Python
from datetime import datetime
|
|
|
|
|
|
class ReplicantInfo:
|
|
server_address: str
|
|
filter_string: str
|
|
replicant_id: str
|
|
replicant_user_id: str
|
|
replicate_classifiers: bool
|
|
|
|
|
|
class CorrectingReplicationOutPackage:
|
|
package_id: int
|
|
status: int
|
|
from_date: datetime
|
|
replication_date: datetime
|
|
replication_timeout_date: datetime
|
|
end_date: datetime
|
|
replicant_id: str
|
|
server_address: str
|
|
filter_string: str
|
|
replication_period: int
|
|
replication_timeout: int
|