Current section

Files

Jump to
ex_trello lib ex_trello models action.ex
Raw

lib/ex_trello/models/action.ex

defmodule ExTrello.Model.Action do
@moduledoc """
A Struct that represents all possible fields an `action` resource from Trello can be returned with.
"""
defstruct id: nil, data: nil, display: nil, entities: nil, date: nil, id_member_creator: nil, type: nil, member: nil,
member_creator: nil
@type t :: %__MODULE__{}
end