37 lines
894 B
Python
37 lines
894 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 WebApp(object):
|
|
_types = {
|
|
"pc_url": str,
|
|
"mobile_url": str,
|
|
}
|
|
|
|
def __init__(self, d=None):
|
|
self.pc_url: Optional[str] = None
|
|
self.mobile_url: Optional[str] = None
|
|
init(self, d, self._types)
|
|
|
|
@staticmethod
|
|
def builder() -> "WebAppBuilder":
|
|
return WebAppBuilder()
|
|
|
|
|
|
class WebAppBuilder(object):
|
|
def __init__(self) -> None:
|
|
self._web_app = WebApp()
|
|
|
|
def pc_url(self, pc_url: str) -> "WebAppBuilder":
|
|
self._web_app.pc_url = pc_url
|
|
return self
|
|
|
|
def mobile_url(self, mobile_url: str) -> "WebAppBuilder":
|
|
self._web_app.mobile_url = mobile_url
|
|
return self
|
|
|
|
def build(self) -> "WebApp":
|
|
return self._web_app
|