sinch.domains.sms.models.v1.shared.auto_update module

class sinch.domains.sms.models.v1.shared.auto_update.AddKeyword(
*,
first_word: Annotated[str, Strict(strict=True)],
second_word: Annotated[str, Strict(strict=True)] | None = None,
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

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

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

  • extra_data (Any)

first_word: Annotated[str, Strict(strict=True)]
second_word: Annotated[str, Strict(strict=True)] | 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].

class sinch.domains.sms.models.v1.shared.auto_update.RemoveKeyword(
*,
first_word: Annotated[str, Strict(strict=True)],
second_word: Annotated[str, Strict(strict=True)] | None = None,
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

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

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

  • extra_data (Any)

first_word: Annotated[str, Strict(strict=True)]
second_word: Annotated[str, Strict(strict=True)] | 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].

class sinch.domains.sms.models.v1.shared.auto_update.AutoUpdate(
*,
to: Annotated[str, Strict(strict=True)],
add: AddKeyword | None = None,
remove: RemoveKeyword | None = None,
**extra_data: Any,
)[source]

Bases: SnakeCaseExtrasModel

Parameters:
to: Annotated[str, Strict(strict=True)]
add: AddKeyword | None
remove: RemoveKeyword | 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].