SystemNumberFormattingParametersGetRequest
Bases: OCIRequest
Request to get the system number formatting parameters. The response is either SystemNumberFormattingParametersGetResponse or ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemNumberFormattingParametersGetRequest. Contains the system number formatting parameter.
Attributes:
apply_formatting_to_e164_numbers (bool):
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 SystemNumberFormattingParametersGetRequest
client = Client()
command = SystemNumberFormattingParametersGetRequest()
response = client.command(command)
print(response)