Current section

Files

Jump to
docusign lib docusign model envelope_ids_request.ex
Raw

lib/docusign/model/envelope_ids_request.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.EnvelopeIdsRequest do
@moduledoc """
Lists of envelope and transaction IDs to use in the results. If you use this request body with Envelopes: listStatus, you must set one or both of the following query parameters to the special value `request_body`: - `envelope_ids=request_body` - `transaction_ids=request_body`
"""
@derive Jason.Encoder
defstruct [
:envelopeIds,
:transactionIds
]
@type t :: %__MODULE__{
:envelopeIds => [String.t()] | nil,
:transactionIds => [String.t()] | nil
}
def decode(value) do
value
end
end