UNPKG

@dgks/owner-info

Version:

Owner Info implementation for data.go.kr

12 lines (11 loc) 587 B
import { KeyOption, Response, Service } from '@dgks/core'; import { ArchitecturePossession, RequestOptions } from './interfaces'; export declare class OwnerInfoService extends Service<RequestOptions> { constructor(option: KeyOption); /** * 건축물소유 정보를 조회합니다 * @param {RequestOptions} requestOptions */ getArchitecturePossession(options: RequestOptions): Promise<Response<ArchitecturePossession>>; protected parseSearchParams(searchParams: RequestOptions): Record<string, string | number | boolean | null | undefined> | undefined; }