Current section

Files

Jump to
docusign lib docusign model doc_gen_form_field_row_value.ex
Raw

lib/docusign/model/doc_gen_form_field_row_value.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.DocGenFormFieldRowValue do
@moduledoc """
An object representing a row of a dynamic table.
"""
alias DocuSign.Deserializer
alias DocuSign.Model.DocGenFormField
@derive Jason.Encoder
defstruct [
:docGenFormFieldList
]
@type t :: %__MODULE__{
:docGenFormFieldList => [DocGenFormField.t()] | nil
}
def decode(value) do
value
|> Deserializer.deserialize(:docGenFormFieldList, :list, DocGenFormField)
end
end