Sha256: e5195e6658a4eae38707c8024a9ebff45e40ac1c85854f563320fce2c9ed4bef

Contents?: true

Size: 1.11 KB

Versions: 4

Compression:

Stored size: 1.11 KB

Contents

# Buildium::WorkOrderTaskPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **title** | **String** | Task title. The title can not exceed 127 characters. |  |
| **due_date** | **Date** | Task due date. The date must be formatted as YYYY-MM-DD. | [optional] |
| **priority** | **String** | Task priority. |  |
| **status** | **String** | Task status. |  |
| **property_id** | **Integer** | The unique identifier of property associated with the request. The assigned property must be active. | [optional] |
| **unit_id** | **Integer** | The unique identifier of the unit associated with the request. The unit must be associated with the `PropertyId` specified. | [optional] |
| **assigned_to_user_id** | **Integer** | The unique identifier of the staff user assigned to the request. The user must be a `Staff` user type. |  |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::WorkOrderTaskPostMessage.new(
  title: null,
  due_date: null,
  priority: null,
  status: null,
  property_id: null,
  unit_id: null,
  assigned_to_user_id: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

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