Current section
Files
Jump to
Current section
Files
lib/procore/model/budget_modification.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.9.0-SNAPSHOT (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.BudgetModification do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:from_budget_line_item_id,
:notes,
:origin_data,
:origin_id,
:to_budget_line_item_id,
:transfer_amount
]
@type t :: %__MODULE__{
:from_budget_line_item_id => integer() | nil,
:notes => String.t() | nil,
:origin_data => String.t() | nil,
:origin_id => String.t() | nil,
:to_budget_line_item_id => integer(),
:transfer_amount => String.t()
}
def decode(value) do
value
end
end