UserSMDIMessageDeskGetRequest
Bases: OCIRequest
Get the user's SMDI Message Desk service personal setting. The response is either a UserSMDIMessageDeskGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserSMDIMessageDeskGetRequest.
Attributes:
is_active (bool):
message_desk_number (Optional[str]):
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 UserSMDIMessageDeskGetRequest
client = Client()
command = UserSMDIMessageDeskGetRequest(
user_id=...,
)
response = client.command(command)
print(response)