GroupDepartmentAdminGetRequest22V2
Bases: OCIRequest
Get a group department administrators profile. The response is either a GroupDepartmentAdminGetResponse22V2 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupDepartmentAdminGetRequest22V2. The response contains the group department administrators profile information.
The following elements are only used in AS data mode and ignored in XS data mode.
accountDisabled
lastAuthenticatedDate
hasPassword
Attributes:
department_key (GroupDepartmentKey):
department_full_path (str):
first_name (Optional[str]):
last_name (Optional[str]):
language (str):
account_disabled (bool):
last_authenticated_date (str):
has_password (bool):
Source code in src/mercury_ocip/commands/commands.py
124800 124801 124802 124803 124804 124805 124806 124807 124808 124809 124810 124811 124812 124813 124814 124815 124816 124817 124818 124819 124820 124821 124822 124823 124824 124825 124826 124827 124828 124829 124830 124831 124832 124833 124834 124835 124836 124837 124838 124839 124840 124841 124842 124843 124844 | |
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupDepartmentAdminGetRequest22V2
client = Client()
command = GroupDepartmentAdminGetRequest22V2(
user_id=...,
)
response = client.command(command)
print(response)