SystemStateOrProvinceGetListRequest
Bases: OCIRequest
Requests the list of state and province names. The response is either SystemStateOrProvinceGetListResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Contains a 2 column table with column headings 'Key' and 'Display Name' and a row for each state or province.
Attributes:
state_or_province_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 SystemStateOrProvinceGetListRequest
client = Client()
command = SystemStateOrProvinceGetListRequest()
response = client.command(command)
print(response)