Current section

Files

Jump to
docusign lib docusign model bulk_sending_copy_custom_field.ex
Raw

lib/docusign/model/bulk_sending_copy_custom_field.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.BulkSendingCopyCustomField do
@moduledoc """
This object contains details about a custom field for a bulk send copy. In a bulk send request, each custom field in the bulk send list must match a custom field in the envelope or template that you want to send.
"""
@derive [Poison.Encoder]
defstruct [
:name,
:value
]
@type t :: %__MODULE__{
:name => String.t() | nil,
:value => String.t() | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.BulkSendingCopyCustomField do
def decode(value, _options) do
value
end
end