Source code for nisystemlink.clients.systems.models._create_virtual_systems_response
from nisystemlink.clients.core._uplink._json_model import JsonModel
[docs]class CreateVirtualSystemResponse(JsonModel):
"""Model for create virtual system response containing the minion ID of the system which is created."""
minionId: str | None = None
"""The minion ID of the created virtual system."""