sinch.domains.sms.models.v1.response.dry_run_response module
- class sinch.domains.sms.models.v1.response.dry_run_response.DryRunResponse(
- *,
- number_of_recipients: Annotated[int, Strict(strict=True)],
- number_of_messages: Annotated[int, Strict(strict=True)],
- per_recipient: Annotated[list[DryRunPerRecipientDetails], Len(min_length=0, max_length=None)] | None = None,
- **extra_data: Any,
Bases:
SnakeCaseExtrasModel- Parameters:
number_of_recipients (Annotated[int, Strict(strict=True)])
number_of_messages (Annotated[int, Strict(strict=True)])
per_recipient (Annotated[list[DryRunPerRecipientDetails], Len(min_length=0, max_length=None)] | None)
extra_data (Any)
- number_of_recipients: Annotated[int, Strict(strict=True)]
- number_of_messages: Annotated[int, Strict(strict=True)]
- per_recipient: Annotated[list[DryRunPerRecipientDetails], Len(min_length=0, max_length=None)] | 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].