SystemSMPPGetRequest22
Bases: OCIRequest
Request the system level data associated with SMPP external interface. The response is either a SystemSMPPGetResponse21 or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to SystemSMPPGetRequest22.
Attributes:
primary_smpp_server_net_address (Optional[str]):
primary_smpp_port (int):
secondary_smpp_server_net_address (Optional[str]):
secondary_smpp_port (int):
system_id (Optional[str]):
password (Optional[str]):
version (str):
system_type (Optional[str]):
enable_mwi_customized_message (bool):
support_message_payload (bool):
max_short_message_length (int):
use_gsm_mwi_ucs2_encoding (bool):
include_only_new_message_count (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
148423 148424 148425 148426 148427 148428 148429 148430 148431 148432 148433 148434 148435 148436 148437 148438 148439 148440 148441 148442 148443 148444 148445 148446 148447 148448 148449 148450 148451 148452 148453 148454 148455 148456 148457 148458 148459 148460 148461 148462 148463 148464 148465 148466 148467 148468 148469 148470 148471 148472 148473 148474 148475 148476 148477 148478 148479 148480 148481 148482 148483 148484 148485 148486 148487 148488 148489 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import SystemSMPPGetRequest22
client = Client()
command = SystemSMPPGetRequest22()
response = client.command(command)
print(response)