key = KOBIS_API_1; } public function jsonSerialize(): array { return [ 'curPage' => $this->curPage, 'itemPerPage' => $this->itemPerPage, 'companyNm' => $this->companyNm, 'ceoNm' => $this->ceoNm, 'companyPartCd' => $this->companyPartCd, 'companyCd' => $this->companyCd ]; } public function toArray(): array { return [ 'key' => $this->key, 'curPage' => $this->curPage, 'itemPerPage' => $this->itemPerPage, 'companyNm' => $this->companyNm, 'ceoNm' => $this->ceoNm, 'companyPartCd' => $this->companyPartCd, 'companyCd' => $this->companyCd ]; } public function toJson(): string|false { return json_encode([ 'curPage' => $this->curPage, 'itemPerPage' => $this->itemPerPage, 'companyNm' => $this->companyNm, 'ceoNm' => $this->ceoNm, 'companyPartCd' => $this->companyPartCd, 'companyCd' => $this->companyCd ]); } }