Current section
Files
Jump to
Current section
Files
lib/docusign/model/bulk_process_result.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.BulkProcessResult do
@moduledoc """
"""
alias DocuSign.Deserializer
alias DocuSign.Model.BulkSendBatchError
@derive Jason.Encoder
defstruct [
:errors,
:listId,
:success
]
@type t :: %__MODULE__{
:errors => [BulkSendBatchError.t()] | nil,
:listId => String.t() | nil,
:success => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:errors, :list, BulkSendBatchError)
end
end