id; } /** * Set code * * @param string $code Balance code * * @return void * * @since 1.0.0 */ public function setCode(string $code) : void { $this->code = $code; } /** * Get code * * @return string * * @since 1.0.0 */ public function getCode() : string { return $this->code; } /** * Set name * * @param string $name Balance name * * @return void * * @since 1.0.0 */ public function setName(string $name) : void { $this->name = $name; } /** * Get name * * @return string * * @since 1.0.0 */ public function getName() : string { return $this->name; } /** * Set description * * @param string $description Balance description * * @return void * * @since 1.0.0 */ public function setDescription(string $description) : void { $this->description = $description; } /** * Get description * * @return string * * @since 1.0.0 */ public function getDescription() : string { return $this->description; } }