sinch.domains.sms.models.v1.response.list_groups_response module
- class sinch.domains.sms.models.v1.response.list_groups_response.ListGroupsResponse(
- *,
- count: Annotated[int, Strict(strict=True)] | None = None,
- page: Annotated[int, Strict(strict=True)] | None = None,
- page_size: Annotated[int, Strict(strict=True)] | None = None,
- groups: Annotated[list[GroupResponse], Len(min_length=0, max_length=None)] | None = None,
- **extra_data: Any,
Bases:
SnakeCaseExtrasModel- Parameters:
count (Annotated[int, Strict(strict=True)] | None)
page (Annotated[int, Strict(strict=True)] | None)
page_size (Annotated[int, Strict(strict=True)] | None)
groups (Annotated[list[GroupResponse], Len(min_length=0, max_length=None)] | None)
extra_data (Any)
- count: Annotated[int, Strict(strict=True)] | None
- page: Annotated[int, Strict(strict=True)] | None
- page_size: Annotated[int, Strict(strict=True)] | None
- groups: Annotated[list[GroupResponse], Len(min_length=0, max_length=None)] | None
- property content
Returns the content of the group list.
- 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].