sp-hydra-veil-core/core/models/OperatorProxySession.py
2026-05-16 00:36:11 -05:00

16 lines
351 B
Python

from dataclasses import dataclass
from dataclasses_json import dataclass_json
from typing import Optional
@dataclass_json
@dataclass
class OperatorProxySession:
id: int
type: str
username: Optional[str]
password: Optional[str]
links: Optional[list]
subscription_url: Optional[str]
operator_id: int
operator_name: str