Current section

Files

Jump to
procore_sdk lib procore model body_29.ex
Raw

lib/procore/model/body_29.ex

# 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.Body29 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