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