sinch.domains.conversation.models.v1.messages.shared.name_info module
- class sinch.domains.conversation.models.v1.messages.shared.name_info.NameInfo(
- *,
- full_name: Annotated[str, Strict(strict=True)],
- first_name: Annotated[str, Strict(strict=True)] | None = None,
- last_name: Annotated[str, Strict(strict=True)] | None = None,
- middle_name: Annotated[str, Strict(strict=True)] | None = None,
- prefix: Annotated[str, Strict(strict=True)] | None = None,
- suffix: Annotated[str, Strict(strict=True)] | None = None,
- **extra_data: Any,
Bases:
SnakeCaseExtrasModel- Parameters:
full_name (Annotated[str, Strict(strict=True)])
first_name (Annotated[str, Strict(strict=True)] | None)
last_name (Annotated[str, Strict(strict=True)] | None)
middle_name (Annotated[str, Strict(strict=True)] | None)
prefix (Annotated[str, Strict(strict=True)] | None)
suffix (Annotated[str, Strict(strict=True)] | None)
extra_data (Any)
- full_name: Annotated[str, Strict(strict=True)]
- first_name: Annotated[str, Strict(strict=True)] | None
- last_name: Annotated[str, Strict(strict=True)] | None
- middle_name: Annotated[str, Strict(strict=True)] | None
- prefix: Annotated[str, Strict(strict=True)] | None
- suffix: Annotated[str, Strict(strict=True)] | None
- model_config = {'extra': 'allow', 'populate_by_name': True, 'validate_by_alias': True, 'validate_by_name': True}
Configuration for the model, should be a dictionary conforming to [ConfigDict][pydantic.config.ConfigDict].