UserServiceIsAssignedRequest
Bases: OCIRequest
Request to determine if a UserService or service pack is assigned to the user.
Attributes:
user_id (str):
service_name (Optional[str]):
service_pack_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
:: mercury_ocip_fast.commands.base_command.ErrorResponse
:: mercury_ocip_fast.commands.base_command.SuccessResponse
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import UserServiceIsAssignedRequest
client = Client()
command = UserServiceIsAssignedRequest(
user_id=...,
service_name=...,
service_pack_name=...,
)
response = client.command(command)
print(response)