GroupServiceInstancePrivacyModifyRequest
Bases: OCIRequest
Modify the data associated with Privacy for a service instance. The response is either a SuccessResponse or an ErrorResponse.
Attributes:
service_user_id (str):
enable_directory_privacy (Optional[bool]):
enable_auto_attendant_extension_dialing_privacy (Optional[bool]):
enable_auto_attendant_name_dialing_privacy (Optional[bool]):
Source code in src/mercury_ocip/commands/commands.py
Responses
Example Usage
from mercury_ocip.client import Client
from mercury_ocip.commands import GroupServiceInstancePrivacyModifyRequest
client = Client()
command = GroupServiceInstancePrivacyModifyRequest(
service_user_id=...,
enable_directory_privacy=...,
enable_auto_attendant_extension_dialing_privacy=...,
enable_auto_attendant_name_dialing_privacy=...,
)
response = client.command(command)
print(response)
Example 2 with Raw Command
from mercury_ocip.client import Client
client = Client()
response = client.raw_command("GroupServiceInstancePrivacyModifyRequest",
service_user_id=...,
enable_directory_privacy=...,
enable_auto_attendant_extension_dialing_privacy=...,
enable_auto_attendant_name_dialing_privacy=...,
)
print(response)