# NOTE: This file is auto generated by OpenAPI Generator 7.12.0 (https://openapi-generator.tech). # Do not edit this file manually. defmodule DocuSign.Model.ConnectEventData do @moduledoc """ This object lets you choose the data format of your Connect response. """ @derive Jason.Encoder defstruct [ :format, :includeData, :version ] @type t :: %__MODULE__{ :format => String.t() | nil, :includeData => [String.t()] | nil, :version => String.t() | nil } def decode(value) do value end end