Current section
Files
Jump to
Current section
Files
lib/docusign/model/power_forms_request.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.PowerFormsRequest do
@moduledoc """
"""
@derive [Poison.Encoder]
defstruct [
:powerForms
]
@type t :: %__MODULE__{
:powerForms => [DocuSign.Model.PowerForm.t()] | nil
}
end
defimpl Poison.Decoder, for: DocuSign.Model.PowerFormsRequest do
import DocuSign.Deserializer
def decode(value, options) do
value
|> deserialize(:powerForms, :list, DocuSign.Model.PowerForm, options)
end
end