Source code for sinch.domains.sms.models.v1.shared.batch_id_mixin

from pydantic import BaseModel, Field, StrictStr


[docs] class BatchIdMixin(BaseModel): """Mixin that adds batch_id field to request models.""" batch_id: StrictStr = Field( default=..., description="The batch ID you received from sending a message.", )