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 7.12.0 (https://openapi-generator.tech).
# Do not edit this file manually.
defmodule DocuSign.Model.BulkSendBatchSummary do
@moduledoc """
Summary status of a single batch.
"""
@derive Jason.Encoder
defstruct [
:action,
:actionStatus,
:batchId,
:batchName,
:batchSize,
:batchUri,
:failed,
:queued,
:sent,
:submittedDate
]
@type t :: %__MODULE__{
:action => String.t() | nil,
:actionStatus => String.t() | nil,
: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
}
def decode(value) do
value
end
end