GroupAdminGetRequest22V3
Bases: OCIRequest
Get a group administrators profile. The response is either a GroupAdminGetResponse22V3 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the GroupAdminGetRequest22V3. The response contains the group administrators profile information.
The following elements are only used in AS data mode and ignored in XS data mode.
accountDisabled
lastAuthenticatedDate
hasPassword
Attributes:
service_provider_id (str):
group_id (str):
first_name (Optional[str]):
last_name (Optional[str]):
language (str):
locale (str):
encoding (str):
account_disabled (bool):
last_authenticated_date (str):
has_password (bool):
Source code in src/mercury_ocip_fast/commands/commands.py
120194 120195 120196 120197 120198 120199 120200 120201 120202 120203 120204 120205 120206 120207 120208 120209 120210 120211 120212 120213 120214 120215 120216 120217 120218 120219 120220 120221 120222 120223 120224 120225 120226 120227 120228 120229 120230 120231 120232 120233 120234 120235 120236 120237 120238 120239 120240 120241 120242 120243 120244 120245 120246 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import GroupAdminGetRequest22V3
client = Client()
command = GroupAdminGetRequest22V3(
user_id=...,
)
response = client.command(command)
print(response)