Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 985 Bytes

File metadata and controls

30 lines (24 loc) · 985 Bytes

Komoju::SubmittedField

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).
value SubmittedFieldAllOfValue

Example

require 'komoju-sdk'

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