Current section
Files
Jump to
Current section
Files
lib/docusign/model/recipients_update_summary.ex
# NOTE: This file is auto generated by OpenAPI Generator 6.4.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.RecipientsUpdateSummary do
@moduledoc """
This is the response that the API returns after you update recipients.
"""
@derive [Poison.Encoder]
defstruct [
:recipientUpdateResults
]
@type t :: %__MODULE__{
:recipientUpdateResults => [DocuSign.Model.RecipientUpdateResponse.t()] | nil
}
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