43 lines
1.2 KiB
Python
43 lines
1.2 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 ApplicationReferral(object):
|
|
_types = {
|
|
"id": str,
|
|
"name": str,
|
|
"en_name": str,
|
|
}
|
|
|
|
def __init__(self, d=None):
|
|
self.id: Optional[str] = None
|
|
self.name: Optional[str] = None
|
|
self.en_name: Optional[str] = None
|
|
init(self, d, self._types)
|
|
|
|
@staticmethod
|
|
def builder() -> "ApplicationReferralBuilder":
|
|
return ApplicationReferralBuilder()
|
|
|
|
|
|
class ApplicationReferralBuilder(object):
|
|
def __init__(self) -> None:
|
|
self._application_referral = ApplicationReferral()
|
|
|
|
def id(self, id: str) -> "ApplicationReferralBuilder":
|
|
self._application_referral.id = id
|
|
return self
|
|
|
|
def name(self, name: str) -> "ApplicationReferralBuilder":
|
|
self._application_referral.name = name
|
|
return self
|
|
|
|
def en_name(self, en_name: str) -> "ApplicationReferralBuilder":
|
|
self._application_referral.en_name = en_name
|
|
return self
|
|
|
|
def build(self) -> "ApplicationReferral":
|
|
return self._application_referral
|