mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
37 lines
809 B
Python
37 lines
809 B
Python
# Generated code. Do not modify.
|
|
# flake8: noqa: F401, F405, F811
|
|
|
|
from __future__ import annotations
|
|
|
|
import enum
|
|
import typing
|
|
|
|
from pydivkit.core import BaseDiv, Expr, Field
|
|
|
|
from . import div_change_transition
|
|
|
|
|
|
# Animations.
|
|
class DivChangeSetTransition(BaseDiv):
|
|
|
|
def __init__(
|
|
self, *,
|
|
type: str = "set",
|
|
items: typing.Optional[typing.Sequence[div_change_transition.DivChangeTransition]] = None,
|
|
**kwargs: typing.Any,
|
|
):
|
|
super().__init__(
|
|
type=type,
|
|
items=items,
|
|
**kwargs,
|
|
)
|
|
|
|
type: str = Field(default="set")
|
|
items: typing.Sequence[div_change_transition.DivChangeTransition] = Field(
|
|
min_items=1,
|
|
description="List of animations.",
|
|
)
|
|
|
|
|
|
DivChangeSetTransition.update_forward_refs()
|