# 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.RecipientsUpdateSummary do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:recipientUpdateResults
]
@type t :: %__MODULE__{
:recipientUpdateResults => [RecipientUpdateResponse]
}
end
defimpl Poison.Decoder, for: DocuSign.Model.RecipientsUpdateSummary do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(
:recipientUpdateResults,
:list,
DocuSign.Model.RecipientUpdateResponse,
options
)
end
end