sinch.domains.sms.models.v1.shared.dry_run_per_recipient_details module

class sinch.domains.sms.models.v1.shared.dry_run_per_recipient_details.DryRunPerRecipientDetails(
*,
recipient: Annotated[str, Strict(strict=True)],
body: Annotated[str, Strict(strict=True)],
number_of_parts: Annotated[int, Strict(strict=True)],
encoding: Literal['GSM', 'UNICODE'] | Annotated[str, Strict(strict=True)],
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

Parameters:
  • recipient (Annotated[str, Strict(strict=True)])

  • body (Annotated[str, Strict(strict=True)])

  • number_of_parts (Annotated[int, Strict(strict=True)])

  • encoding (Literal['GSM', 'UNICODE'] | ~typing.Annotated[str, ~pydantic.types.Strict(strict=True)])

  • extra_data (Any)

recipient: Annotated[str, Strict(strict=True)]
body: Annotated[str, Strict(strict=True)]
number_of_parts: Annotated[int, Strict(strict=True)]
encoding: Literal['GSM', 'UNICODE'] | Annotated[str, 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].