2022-08-26 16:08:58 +02:00
|
|
|
defmodule Mobilizon.Service.GlobalSearch.EventResult do
|
|
|
|
@moduledoc """
|
|
|
|
The structure holding search result information about an event
|
|
|
|
"""
|
|
|
|
defstruct [
|
|
|
|
:id,
|
|
|
|
:uuid,
|
|
|
|
:url,
|
|
|
|
:title,
|
|
|
|
:begins_on,
|
|
|
|
:ends_on,
|
|
|
|
:picture,
|
|
|
|
:category,
|
|
|
|
:tags,
|
|
|
|
:organizer_actor,
|
2022-09-26 10:29:20 +02:00
|
|
|
:participant_stats,
|
2022-09-01 10:00:17 +02:00
|
|
|
:physical_address
|
2022-08-26 16:08:58 +02:00
|
|
|
]
|
|
|
|
end
|