Skip to content

ReplacementUserIdList

Bases: OCIType

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

Attributes:

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

    Attributes:

        user_id (List[str]):

    """

    user_id: List[str] = field(metadata={"alias": "userId"})