Files
divkit/api_generator/tests/references/python/entity_without_properties.py
T
timatifey b70c1488ee PythonGenerator
python generator tests

PythonGenerator init

DescriptionLanguage move
2022-08-29 15:05:30 +03:00

23 lines
437 B
Python

# Generated code. Do not modify.
from __future__ import annotations
from pydivkit.core import BaseDiv, Field
import enum
import typing
class EntityWithoutProperties(BaseDiv):
def __init__(
self, *,
type: str = 'entity_without_properties',
):
super().__init__(
type=type,
)
type: str = Field(default='entity_without_properties')
EntityWithoutProperties.update_forward_refs()