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