Source code for ska_oso_pdm.sb_definition.dish.dish_allocation

"""
The messages module provides simple Python representations of the structured
request and response for the TMC CentralNode.AssignResources command.
"""

from ska_oso_pdm._shared import PdmObject

__all__ = ["DishAllocation"]


[docs] class DishAllocation(PdmObject): """ DishAllocation represents the DISH allocation part of an AssignResources request and response. :param receptor_ids: (optional) IDs of the receptors to add to this allocation """ receptor_ids: frozenset[str] = frozenset()