*/ public function toArray(Request $request): array { return [ 'id' => $this->id, 'externalId' => $this->external_id, 'source' => $this->source, 'type' => $this->type, 'title' => $this->title, 'durationSeconds' => $this->duration_seconds, 'caloriesBurned' => $this->calories_burned, 'distanceMeters' => (int) $this->distance_meters, 'startedAt' => $this->started_at, 'createdAt' => $this->created_at, 'updatedAt' => $this->updated_at, ]; } }