Sha256: 0b6b63e3c541c55438001ce1c4b2e47c03a48759859640cffd1fa174c1b5b96d

Contents?: true

Size: 1.26 KB

Versions: 4

Compression:

Stored size: 1.26 KB

Contents

# Buildium::ApplicationResponseFieldMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **field_category_type** | **String** | Indicates the field category type the field is assigned. The `FieldCategoryType` can be used to identify specific data points within the application. For example, to identify the fields that contain the applicants full name you would filter the fields within the application where the `FieldCategoryType` is equal to `ApplicantName`. | [optional] |
| **field_type** | **String** | Indicates the fields expected input value format and/or data type. For example, a field can be assigned a `FieldType` of `DateDayMonthYear` which indicates the input value must be a date containing a day, month and year. | [optional] |
| **field_label** | **String** | A user defined description of the field. This value is typically displayed as the form field label on the application. | [optional] |
| **value** | **String** | The field input value from the applicant. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::ApplicationResponseFieldMessage.new(
  field_category_type: null,
  field_type: null,
  field_label: null,
  value: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
buildium-ruby-3.1.0 docs/ApplicationResponseFieldMessage.md
buildium-ruby-3.0.0 docs/ApplicationResponseFieldMessage.md
buildium-ruby-2.1.0 docs/ApplicationResponseFieldMessage.md
buildium-ruby-2.0.1 docs/ApplicationResponseFieldMessage.md