Packages

A blazing fast SDK for the DealCloud & OnePlace CRM in pure Elixir.

Current section

Files

Jump to
dealcloud lib data record.ex
Raw

lib/data/record.ex

defmodule Dealcloud.Data.Record do
@moduledoc false
@type t :: %__MODULE__{
entryId: integer,
fieldId: integer,
currencyCode: String.t(),
rowId: integer,
value: any,
ignoreNearDups: boolean
}
defstruct entryId: 0,
fieldId: 0,
currencyCode: nil,
rowId: 0,
value: nil,
ignoreNearDups: true
end