Current section
Files
Jump to
Current section
Files
lib/procore/model/body_61.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.Body61 do
@moduledoc """
"""
@derive Jason.Encoder
defstruct [
:meeting_id,
:meeting_topic,
:attachments
]
@type t :: %__MODULE__{
:meeting_id => integer(),
:meeting_topic => Procore.Model.MeetingTopic.t(),
:attachments => [String.t()] | nil
}
alias Procore.Deserializer
def decode(value) do
value
|> Deserializer.deserialize(:meeting_topic, :struct, Procore.Model.MeetingTopic)
end
end