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

from pydantic import BaseModel, Field, StrictStr


[docs] class GroupIdMixin(BaseModel): """Mixin that adds group_id field to request models.""" group_id: StrictStr = Field( default=..., description="ID of the group.", )