sinch.domains.conversation.models.v1.messages.shared.coordinates module

class sinch.domains.conversation.models.v1.messages.shared.coordinates.Coordinates(
*,
latitude: Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)],
longitude: Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)],
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

Parameters:
  • latitude (Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)])

  • longitude (Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)])

  • extra_data (Any)

latitude: Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)]
longitude: Annotated[float, Strict(strict=True)] | Annotated[int, Strict(strict=True)]
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].