Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 870 Bytes

File metadata and controls

28 lines (22 loc) · 870 Bytes

Komoju::Field

Properties

Name Type Description Notes
field_type String The input type for this field (e.g. "text", "file", "boolean").
field String Machine-readable key name of the field.
field_name String Human-readable display name of the field.
field_properties FieldFieldProperties
position Integer Display order position of this field in the application form.
optional Boolean Whether this field is optional (true) or required (false).

Example

require 'komoju-sdk'

instance = Komoju::Field.new(
  field_type: null,
  field: null,
  field_name: null,
  field_properties: null,
  position: null,
  optional: null
)