Skip to content

ProfileAndServiceSpeedDial100Info

Bases: OCIType

This is the configuration parameters for Speed Dial 100 service

Attributes:

prefix (Optional[str]):

speed_dial_entry (Optional[List[SpeedDial100Entry]]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ProfileAndServiceSpeedDial100Info(OCIType):
    """This is the configuration parameters for Speed Dial 100 service

    Attributes:

        prefix (Optional[str]):

        speed_dial_entry (Optional[List[SpeedDial100Entry]]):

    """

    prefix: Optional[str] = field(default=None, metadata={"alias": "prefix"})

    speed_dial_entry: Optional[List[SpeedDial100Entry]] = field(
        default=None, metadata={"alias": "speedDialEntry"}
    )