Current section

Files

Jump to
docusign lib docusign model bulk_send_batch_summary.ex
Raw

lib/docusign/model/bulk_send_batch_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.BulkSendBatchSummary do
@moduledoc """
Summary status of a single batch.
"""
@derive [Poison.Encoder]
defstruct [
:batchId,
:batchName,
:batchSize,
:batchUri,
:failed,
:queued,
:sent,
:submittedDate
]
@type t :: %__MODULE__{
:batchId => String.t() | nil,
:batchName => String.t() | nil,
:batchSize => String.t() | nil,
:batchUri => String.t() | nil,
:failed => String.t() | nil,
:queued => String.t() | nil,
:sent => String.t() | nil,
:submittedDate => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BulkSendBatchSummary do
def decode(value, _options) do
value
end
end