UserINIntegrationGetRequest
Bases: OCIRequest
Request to get the user level IN Integration service attributes Response is either UserINIntegrationGetResponse or ErrorResponse
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to UserINIntegrationGetRequest
Attributes:
originating_service_key (Optional[int]):
terminating_service_key (Optional[int]):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserINIntegrationGetRequest
client = Client()
command = UserINIntegrationGetRequest(
user_id=...,
)
response = client.command(command)
print(response)