67 lines
2.1 KiB
Python
67 lines
2.1 KiB
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 SourceSetting(object):
|
||
|
_types = {
|
||
|
"api_id": str,
|
||
|
"api_name": str,
|
||
|
"label": Dict[str, str],
|
||
|
"from_type": str,
|
||
|
"auth_key": str,
|
||
|
"auth_name": Dict[str, str],
|
||
|
"data_source_integration_type": str,
|
||
|
}
|
||
|
|
||
|
def __init__(self, d=None):
|
||
|
self.api_id: Optional[str] = None
|
||
|
self.api_name: Optional[str] = None
|
||
|
self.label: Optional[Dict[str, str]] = None
|
||
|
self.from_type: Optional[str] = None
|
||
|
self.auth_key: Optional[str] = None
|
||
|
self.auth_name: Optional[Dict[str, str]] = None
|
||
|
self.data_source_integration_type: Optional[str] = None
|
||
|
init(self, d, self._types)
|
||
|
|
||
|
@staticmethod
|
||
|
def builder() -> "SourceSettingBuilder":
|
||
|
return SourceSettingBuilder()
|
||
|
|
||
|
|
||
|
class SourceSettingBuilder(object):
|
||
|
def __init__(self) -> None:
|
||
|
self._source_setting = SourceSetting()
|
||
|
|
||
|
def api_id(self, api_id: str) -> "SourceSettingBuilder":
|
||
|
self._source_setting.api_id = api_id
|
||
|
return self
|
||
|
|
||
|
def api_name(self, api_name: str) -> "SourceSettingBuilder":
|
||
|
self._source_setting.api_name = api_name
|
||
|
return self
|
||
|
|
||
|
def label(self, label: Dict[str, str]) -> "SourceSettingBuilder":
|
||
|
self._source_setting.label = label
|
||
|
return self
|
||
|
|
||
|
def from_type(self, from_type: str) -> "SourceSettingBuilder":
|
||
|
self._source_setting.from_type = from_type
|
||
|
return self
|
||
|
|
||
|
def auth_key(self, auth_key: str) -> "SourceSettingBuilder":
|
||
|
self._source_setting.auth_key = auth_key
|
||
|
return self
|
||
|
|
||
|
def auth_name(self, auth_name: Dict[str, str]) -> "SourceSettingBuilder":
|
||
|
self._source_setting.auth_name = auth_name
|
||
|
return self
|
||
|
|
||
|
def data_source_integration_type(self, data_source_integration_type: str) -> "SourceSettingBuilder":
|
||
|
self._source_setting.data_source_integration_type = data_source_integration_type
|
||
|
return self
|
||
|
|
||
|
def build(self) -> "SourceSetting":
|
||
|
return self._source_setting
|