sdk/oapiSdk/lark_oapi/api/translation/v1/model/text.py

25 lines
496 B
Python

# Code generated by Lark OpenAPI.
from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type
from lark_oapi.core.construct import init
class Text(object):
_types = {
}
def __init__(self, d=None):
init(self, d, self._types)
@staticmethod
def builder() -> "TextBuilder":
return TextBuilder()
class TextBuilder(object):
def __init__(self) -> None:
self._text = Text()
def build(self) -> "Text":
return self._text