ServiceProviderAdminGetRequest22V3
Bases: OCIRequest
Get a service provider administrators profile. The response is either a ServiceProviderAdminGetResponse22V3 or an ErrorResponse.
Attributes:
user_id (str):
Source code in src/mercury_ocip_fast/commands/commands.py
Responses
Bases: OCIDataResponse
Response to the ServiceProviderAdminGetRequest22V3. The response contains the service provider 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):
first_name (Optional[str]):
last_name (Optional[str]):
language (str):
administrator_type (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
132314 132315 132316 132317 132318 132319 132320 132321 132322 132323 132324 132325 132326 132327 132328 132329 132330 132331 132332 132333 132334 132335 132336 132337 132338 132339 132340 132341 132342 132343 132344 132345 132346 132347 132348 132349 132350 132351 132352 132353 132354 132355 132356 132357 132358 132359 132360 132361 132362 132363 132364 132365 132366 | |
Example Usage
from mercury_ocip_fast.client import Client
from mercury_ocip_fast.commands import ServiceProviderAdminGetRequest22V3
client = Client()
command = ServiceProviderAdminGetRequest22V3(
user_id=...,
)
response = client.command(command)
print(response)