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

22 lines
383 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()]
# notifications: [???]
}
2019-09-12 23:35:03 +00:00
defstruct [
:data,
:local,
:actor,
2019-09-16 00:07:44 +00:00
:recipients
# :notifications
2019-09-12 23:35:03 +00:00
]
end