Source code for ska_tmc_cdm.messages.mccscontroller.releaseresources

"""
The allocate module defines a Python object model for the structured JSON that
forms the argument for an MCCSController.ReleaseResources  call.
"""
from typing import Optional

SCHEMA = "https://schema.skao.int/ska-low-mccs-releaseresources/2.0"


[docs]class ReleaseResourcesRequest: """ ReleaseResourcesRequest is the object representation of the JSON argument for an MCCSController.ReleaseResources command. """ def __init__( self, *, # force kwonly args interface: Optional[str] = SCHEMA, subarray_id: int, release_all: bool, ): self.interface = interface self.subarray_id = subarray_id self.release_all = release_all def __eq__(self, other): """ Check for equality between two ReleaseResourcesRequest objects :param other: the object to compare to this object :return: True if the objects are the same, else False """ if not isinstance(other, ReleaseResourcesRequest): return False return ( self.interface == other.interface and self.subarray_id == other.subarray_id and self.release_all == other.release_all )