Current section
Files
Jump to
Current section
Files
lib/docusign/model/scheduled_sending.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.ScheduledSending do
@moduledoc """
A complex element that specifies the scheduled sending settings for the envelope.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.EnvelopeDelayRule
@derive Jason.Encoder
defstruct [
:bulkListId,
:resumeDate,
:rules,
:status
]
@type t :: %__MODULE__{
:bulkListId => String.t() | nil,
:resumeDate => String.t() | nil,
:rules => [EnvelopeDelayRule.t()] | nil,
:status => String.t() | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:rules, :list, EnvelopeDelayRule)
end
end