Current section
Files
Jump to
Current section
Files
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