Current section
Files
Jump to
Current section
Files
lib/procore/model/body_48.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.Body48 do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:change_order_batch
]
@type t :: %__MODULE__{
:change_order_batch => Procore.Model.ChangeOrderBatch.t()
}
alias Procore.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:change_order_batch, :struct, Procore.Model.ChangeOrderBatch)
end
end