type = $type; $this->title = $title; $this->language = $language; } /** * Get id * * @return int * * @since 1.0.0 */ public function getId() : int { return $this->id; } /** * Get attribute type * * @return int|ClientAttributeType * * @since 1.0.0 */ public function getType() { return $this->type; } /** * Set type. * * @param int $type Type id * * @return void * * @since 1.0.0 */ public function setType(int $type) : void { $this->type = $type; } /** * Set language * * @param string $language Language * * @return void * * @since 1.0.0 */ public function setLanguage(string $language) : void { $this->language = $language; } /** * {@inheritdoc} */ public function toArray() : array { return []; } /** * {@inheritdoc} */ public function jsonSerialize() { return $this->toArray(); } }