# 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 ResurrectEmployeeOptions(object):
    _types = {
        "subscription_ids": List[str],
    }

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

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


class ResurrectEmployeeOptionsBuilder(object):
    def __init__(self) -> None:
        self._resurrect_employee_options = ResurrectEmployeeOptions()

    def subscription_ids(self, subscription_ids: List[str]) -> "ResurrectEmployeeOptionsBuilder":
        self._resurrect_employee_options.subscription_ids = subscription_ids
        return self

    def build(self) -> "ResurrectEmployeeOptions":
        return self._resurrect_employee_options
