# `Dicom.SR.LogEntry`
[🔗](https://github.com/Balneario-de-Cofrentes/dicom/blob/v0.9.1/lib/dicom/sr/log_entry.ex#L1)

A single log entry for a TID 3001 Procedure Log document.

Each entry captures an event that occurred during an interventional or
imaging procedure: its timestamp, the type of action, and a description.

# `action_type`

```elixir
@type action_type() :: :image_acquisition | :drug_administered | :measurement | :text
```

# `t`

```elixir
@type t() :: %Dicom.SR.LogEntry{
  action_type: action_type(),
  datetime: DateTime.t() | NaiveDateTime.t() | String.t(),
  description: String.t() | Dicom.SR.Code.t(),
  details: keyword()
}
```

# `new`

```elixir
@spec new(
  DateTime.t() | NaiveDateTime.t() | String.t(),
  action_type(),
  String.t() | Dicom.SR.Code.t(),
  keyword()
) :: t()
```

# `to_content_item`

```elixir
@spec to_content_item(t()) :: Dicom.SR.ContentItem.t()
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
