SystemSubscriberGetLoginParametersRequest
Bases: OCIRequest
Get the system login configuration for all subscribers. The response is either a SystemSubscriberGetLoginParametersResponse or an ErrorResponse.
Attributes:Source code in
src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the SystemSubscriberGetLoginParametersRequest.
Attributes:
max_failed_login_attempts (int):
min_login_id_length (int):
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 SystemSubscriberGetLoginParametersRequest
client = Client()
command = SystemSubscriberGetLoginParametersRequest()
response = client.command(command)
print(response)