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

class sinch.domains.conversation.models.v1.messages.shared.address_info.AddressInfo(
*,
city: Annotated[str, Strict(strict=True)] | None = None,
country: Annotated[str, Strict(strict=True)] | None = None,
state: Annotated[str, Strict(strict=True)] | None = None,
zip: Annotated[str, Strict(strict=True)] | None = None,
type: Annotated[str, Strict(strict=True)] | None = None,
country_code: Annotated[str, Strict(strict=True)] | None = None,
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

Parameters:
  • city (Annotated[str, Strict(strict=True)] | None)

  • country (Annotated[str, Strict(strict=True)] | None)

  • state (Annotated[str, Strict(strict=True)] | None)

  • zip (Annotated[str, Strict(strict=True)] | None)

  • type (Annotated[str, Strict(strict=True)] | None)

  • country_code (Annotated[str, Strict(strict=True)] | None)

  • extra_data (Any)

city: Annotated[str, Strict(strict=True)] | None
country: Annotated[str, Strict(strict=True)] | None
state: Annotated[str, Strict(strict=True)] | None
zip: Annotated[str, Strict(strict=True)] | None
type: Annotated[str, Strict(strict=True)] | None
country_code: 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].