# 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.Body114 do @moduledoc """ """ @derive Jason.Encoder defstruct [ :subject, :body, :distribution_ids, :cc_distribution_ids, :bcc_distribution_ids ] @type t :: %__MODULE__{ :subject => String.t() | nil, :body => String.t() | nil, :distribution_ids => [integer()] | nil, :cc_distribution_ids => [integer()] | nil, :bcc_distribution_ids => [integer()] | nil } def decode(value) do value end end