1
0
Fork 0
mirror of https://framagit.org/framasoft/mobilizon.git synced 2024-12-29 03:15:27 +00:00
mobilizon/lib/service/activity_pub/activity.ex

20 lines
329 B
Elixir
Raw Normal View History

defmodule Mobilizon.Service.ActivityPub.Activity do
2019-09-12 23:35:03 +00:00
@moduledoc """
Represents an activity.
"""
2019-09-16 00:07:44 +00:00
@type t :: %__MODULE__{
data: String.t(),
local: boolean,
actor: Actor.t(),
recipients: [String.t()]
}
2019-09-12 23:35:03 +00:00
defstruct [
:data,
:local,
:actor,
2019-09-16 00:07:44 +00:00
:recipients
2019-09-12 23:35:03 +00:00
]
end