sinch.domains.sms.models.v1.response.batch_delivery_report module

class sinch.domains.sms.models.v1.response.batch_delivery_report.BatchDeliveryReport(
*,
batch_id: Annotated[str, Strict(strict=True)],
client_reference: Annotated[str, Strict(strict=True)] | None = None,
statuses: Annotated[list[MessageDeliveryStatus], Len(min_length=0, max_length=None)],
total_message_count: Annotated[int, Strict(strict=True)],
type: Annotated[str, Strict(strict=True)],
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

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

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

  • statuses (Annotated[list[MessageDeliveryStatus], Len(min_length=0, max_length=None)])

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

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

  • extra_data (Any)

batch_id: Annotated[str, Strict(strict=True)]
client_reference: Annotated[str, Strict(strict=True)] | None
statuses: Annotated[list[MessageDeliveryStatus], Len(min_length=0, max_length=None)]
total_message_count: Annotated[int, Strict(strict=True)]
type: 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].