Current section

Files

Jump to
ex_bovespa lib structs broker.ex
Raw

lib/structs/broker.ex

defmodule ExBovespa.Structs.Broker do
@moduledoc """
Holds the data related to a broker
"""
@type t() :: %__MODULE__{
name: String.t(),
code: String.t()
}
defstruct [:name, :code]
end