Skip to content

UserDisplayNames

Bases: OCIType

The parts of a user's display name that a client can display in whatever way is appropriate for the client application.

Attributes:

last_name (str):

first_name (str):

hiragana_last_name (Optional[str]):

hiragana_first_name (Optional[str]):
Source code in src/mercury_ocip_fast/commands/commands.py
@dataclass(kw_only=True)
class UserDisplayNames(OCIType):
    """The parts of a user's display name that a client can display in whatever way is appropriate
        for the client application.

    Attributes:

        last_name (str):

        first_name (str):

        hiragana_last_name (Optional[str]):

        hiragana_first_name (Optional[str]):

    """

    last_name: str = field(metadata={"alias": "lastName"})

    first_name: str = field(metadata={"alias": "firstName"})

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

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