mirror of
https://github.com/divkit/divkit.git
synced 2026-06-06 20:07:59 +00:00
44 lines
1.2 KiB
Python
44 lines
1.2 KiB
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_action
|
|
|
|
|
|
# Callbacks that are called after [data
|
|
# loading](../../interaction.dita#loading-data).
|
|
class DivDownloadCallbacks(BaseDiv):
|
|
|
|
def __init__(
|
|
self, *,
|
|
on_fail_actions: typing.Optional[typing.Sequence[div_action.DivAction]] = None,
|
|
on_success_actions: typing.Optional[typing.Sequence[div_action.DivAction]] = None,
|
|
**kwargs: typing.Any,
|
|
):
|
|
super().__init__(
|
|
on_fail_actions=on_fail_actions,
|
|
on_success_actions=on_success_actions,
|
|
**kwargs,
|
|
)
|
|
|
|
on_fail_actions: typing.Optional[typing.Sequence[div_action.DivAction]] = Field(
|
|
min_items=1,
|
|
description=(
|
|
"Actions in case of unsuccessful loading if the host "
|
|
"reported it or the waitingtime expired."
|
|
),
|
|
)
|
|
on_success_actions: typing.Optional[typing.Sequence[div_action.DivAction]] = Field(
|
|
min_items=1,
|
|
description="Actions in case of successful loading.",
|
|
)
|
|
|
|
|
|
DivDownloadCallbacks.update_forward_refs()
|