Skip to content

ReplacementAlternateUserIdEntryList

Bases: OCIType

A list of alternate user ids that that replaces a previously configured list. By convention, an element of this type may be set nill to clear the list.

Attributes:

alternate_user_id (List[AlternateUserIdEntry]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class ReplacementAlternateUserIdEntryList(OCIType):
    """A list of alternate user ids that that replaces a previously configured list.
        By convention, an element of this type may be set nill to clear the list.

    Attributes:

        alternate_user_id (List[AlternateUserIdEntry]):

    """

    alternate_user_id: List[AlternateUserIdEntry] = field(
        metadata={"alias": "alternateUserId"}
    )