Skip to content

UserMoveMessage

Bases: OCIType

The message describes the impact made when moving a user from one group to another group within the enterprise. The message could also contain the error condition that prevents the user move.

Attributes:

message_code (int):

summary (str):

summary_english (str):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class UserMoveMessage(OCIType):
    """The message describes the impact made when moving a user from one group to another group within the enterprise. The message could also contain the error condition that prevents the user move.

    Attributes:

        message_code (int):

        summary (str):

        summary_english (str):

    """

    message_code: int = field(metadata={"alias": "messageCode"})

    summary: str = field(metadata={"alias": "summary"})

    summary_english: str = field(metadata={"alias": "summaryEnglish"})