SystemGETSNumberGetListRequest
Bases: OCIRequest
Get a list of GETS reserved Numbers. The response is either SystemGETSNumberGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemGETSNumberGetListRequest. The table columns are: "Number", "Type" and "Description".
Attributes:
reserved_number_table (OCITable):
Source code in src/mercury_ocip_fast/commands/commands.py
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemGETSNumberGetListRequest
client = Client()
command = SystemGETSNumberGetListRequest()
response = client.command(command)
print(response)