Current section
Files
Jump to
Current section
Files
lib/procore/model/body_72.ex
# NOTE: This file is auto generated by OpenAPI Generator 7.8.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule Procore.Model.Body72 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