31 lines
774 B
Python
31 lines
774 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 ReplyExtra(object):
|
||
|
_types = {
|
||
|
"image_list": List[str],
|
||
|
}
|
||
|
|
||
|
def __init__(self, d=None):
|
||
|
self.image_list: Optional[List[str]] = None
|
||
|
init(self, d, self._types)
|
||
|
|
||
|
@staticmethod
|
||
|
def builder() -> "ReplyExtraBuilder":
|
||
|
return ReplyExtraBuilder()
|
||
|
|
||
|
|
||
|
class ReplyExtraBuilder(object):
|
||
|
def __init__(self) -> None:
|
||
|
self._reply_extra = ReplyExtra()
|
||
|
|
||
|
def image_list(self, image_list: List[str]) -> "ReplyExtraBuilder":
|
||
|
self._reply_extra.image_list = image_list
|
||
|
return self
|
||
|
|
||
|
def build(self) -> "ReplyExtra":
|
||
|
return self._reply_extra
|