# Code generated by Lark OpenAPI.

from typing import Any, Optional, Union, Dict, List, Set, IO, Callable, Type
from lark_oapi.core.construct import init
from .location_dto import LocationDto


class QueryLocationResponseBody(object):
    _types = {
        "items": List[LocationDto],
        "has_more": bool,
        "page_token": str,
    }

    def __init__(self, d=None):
        self.items: Optional[List[LocationDto]] = None
        self.has_more: Optional[bool] = None
        self.page_token: Optional[str] = None
        init(self, d, self._types)

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


class QueryLocationResponseBodyBuilder(object):
    def __init__(self) -> None:
        self._query_location_response_body = QueryLocationResponseBody()

    def items(self, items: List[LocationDto]) -> "QueryLocationResponseBodyBuilder":
        self._query_location_response_body.items = items
        return self

    def has_more(self, has_more: bool) -> "QueryLocationResponseBodyBuilder":
        self._query_location_response_body.has_more = has_more
        return self

    def page_token(self, page_token: str) -> "QueryLocationResponseBodyBuilder":
        self._query_location_response_body.page_token = page_token
        return self

    def build(self) -> "QueryLocationResponseBody":
        return self._query_location_response_body
