# 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.Body76 do @moduledoc """ """ @derive Jason.Encoder defstruct [ :instruction_type ] @type t :: %__MODULE__{ :instruction_type => Procore.Model.InstructionType.t() } alias Procore.Deserializer def decode(value) do value |> Deserializer.deserialize(:instruction_type, :struct, Procore.Model.InstructionType) end end