Current section

Files

Jump to
docusign lib docusign model recipients_update_summary.ex
Raw

lib/docusign/model/recipients_update_summary.ex

# 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.RecipientsUpdateSummary do
@moduledoc """
This is the response that the API returns after you update recipients.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.RecipientUpdateResponse
@derive Jason.Encoder
defstruct [
:recipientUpdateResults
]
@type t :: %__MODULE__{
:recipientUpdateResults => [RecipientUpdateResponse.t()] | nil
}
def decode(value) do
value
|> Deserializer.deserialize(
:recipientUpdateResults,
:list,
RecipientUpdateResponse
)
end
end