# 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 BackgroundCheckItemInfo(object):
    _types = {
        "id": str,
        "name": str,
    }

    def __init__(self, d=None):
        self.id: Optional[str] = None
        self.name: Optional[str] = None
        init(self, d, self._types)

    @staticmethod
    def builder() -> "BackgroundCheckItemInfoBuilder":
        return BackgroundCheckItemInfoBuilder()


class BackgroundCheckItemInfoBuilder(object):
    def __init__(self) -> None:
        self._background_check_item_info = BackgroundCheckItemInfo()

    def id(self, id: str) -> "BackgroundCheckItemInfoBuilder":
        self._background_check_item_info.id = id
        return self

    def name(self, name: str) -> "BackgroundCheckItemInfoBuilder":
        self._background_check_item_info.name = name
        return self

    def build(self) -> "BackgroundCheckItemInfo":
        return self._background_check_item_info
