Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 679 Bytes

FormFieldsInner.md

File metadata and controls

24 lines (18 loc) · 679 Bytes

PDFGeneratorAPI::FormFieldsInner

Properties

Name Type Description Notes
label String Field label displayed in the form [optional]
name String Data field name. For example "name" can be used as "{name}" in the document as placeholder. [optional]
type String Field type [optional]
required Boolean Specifies if the field is required or not [optional]

Example

require 'pdf_generator_api_client'

instance = PDFGeneratorAPI::FormFieldsInner.new(
  label: Full name,
  name: name,
  type: text,
  required: false
)