UserCommPilotExpressGetRequest
Bases: OCIRequest
Get the user's commPilot express service setting. The response is either a UserCommPilotExpressGetResponse or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the UserCommPilotExpressGetRequest.
Attributes:
profile (Optional[str]):
available_in_office (CommPilotExpressAvailableInOffice):
available_out_of_office (CommPilotExpressAvailableOutOfOffice):
busy (CommPilotExpressBusy):
unavailable (CommPilotExpressUnavailable):
Source code in src/mercury_ocip/commands/commands.py
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import UserCommPilotExpressGetRequest
client = Client()
command = UserCommPilotExpressGetRequest(
user_id=...,
)
response = client.command(command)
print(response)