attributes['code'] ?? "null"; } public function getName(): string { return $this->attributes['name']; } public function getRole(): string { return $this->attributes['role']; } public function getSaleRate(): int { return $this->attributes['sale_rate'] ?? 0; } public function getAccountBalance(): int { return $this->attributes['account_balance']; } public function getCouponBalance(): int { return $this->attributes['coupon_balance']; } public function getPointBalance(): int { return $this->attributes['point_balance']; } public function getHistory(): string { return $this->attributes['history'] ?? ""; } }