Bases: OCIType
This is the configuration parameters for Busy Lamp Field service The monitoredUserTable has column headings: "User Id", "Last Name", "First Name", "Hiragana Last Name", "Hiragana First Name", "Phone Number", "Extension", "Department", "Email Address", "IMP Id".
Attributes:
list_uri (Optional[str]):
enable_call_park_notification (bool):
monitored_user_table (OCITable):
Source code in src/mercury_ocip/commands/commands.py
| @dataclass(kw_only=True)
class ProfileAndServiceBusyLampFieldInfo(OCIType):
"""This is the configuration parameters for Busy Lamp Field service
The monitoredUserTable has column headings:
\"User Id\", \"Last Name\", \"First Name\", \"Hiragana Last Name\", \"Hiragana First Name\",
\"Phone Number\", \"Extension\", \"Department\", \"Email Address\", \"IMP Id\".
Attributes:
list_uri (Optional[str]):
enable_call_park_notification (bool):
monitored_user_table (OCITable):
"""
list_uri: Optional[str] = field(default=None, metadata={"alias": "listURI"})
enable_call_park_notification: bool = field(
metadata={"alias": "enableCallParkNotification"}
)
monitored_user_table: OCITable = field(metadata={"alias": "monitoredUserTable"})
|