lib/line_drive/lead_organization.ex

defmodule LineDrive.LeadOrganization do
  @moduledoc """
  This module represent a lead organization in pipedrive.
  """
  use TypedStruct
  use LineDrive.Structable

  typedstruct do
    field :id, pos_integer()
    field :name, String.t()
  end
end