43 lines
1.1 KiB
Python
43 lines
1.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 Scope(object):
|
||
|
_types = {
|
||
|
"scope_name": str,
|
||
|
"grant_status": int,
|
||
|
"scope_type": str,
|
||
|
}
|
||
|
|
||
|
def __init__(self, d=None):
|
||
|
self.scope_name: Optional[str] = None
|
||
|
self.grant_status: Optional[int] = None
|
||
|
self.scope_type: Optional[str] = None
|
||
|
init(self, d, self._types)
|
||
|
|
||
|
@staticmethod
|
||
|
def builder() -> "ScopeBuilder":
|
||
|
return ScopeBuilder()
|
||
|
|
||
|
|
||
|
class ScopeBuilder(object):
|
||
|
def __init__(self) -> None:
|
||
|
self._scope = Scope()
|
||
|
|
||
|
def scope_name(self, scope_name: str) -> "ScopeBuilder":
|
||
|
self._scope.scope_name = scope_name
|
||
|
return self
|
||
|
|
||
|
def grant_status(self, grant_status: int) -> "ScopeBuilder":
|
||
|
self._scope.grant_status = grant_status
|
||
|
return self
|
||
|
|
||
|
def scope_type(self, scope_type: str) -> "ScopeBuilder":
|
||
|
self._scope.scope_type = scope_type
|
||
|
return self
|
||
|
|
||
|
def build(self) -> "Scope":
|
||
|
return self._scope
|