prize_star_count; } /** * @inheritDoc */ public function toArray(): array { return [ 'prize_star_count' => $this->prize_star_count ]; } /** * @inheritDoc */ public static function fromArray(?array $data): ?GiveawayCreated { if(!$data) { return null; } $object = new self(); $object->prize_star_count = $data['prize_star_count']; return $object; } }