Current section
Files
Jump to
Current section
Files
lib/docusign/model/recipient_event.ex
# NOTE: This class is auto generated by the swagger code generator program.
# https://github.com/swagger-api/swagger-codegen.git
# Do not edit the class manually.
defmodule DocuSign.Model.RecipientEvent do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:includeDocuments,
:recipientEventStatusCode
]
@type t :: %__MODULE__{
:includeDocuments => String.t(),
:recipientEventStatusCode => String.t()
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientEvent do
def decode(value, _options) do
value
end
end