Sha256: 7e17e78c10a8efbe376d45fd220cde5293678d5cdd15d482a8f37b3d2c2e7ece

Contents?: true

Size: 1.5 KB

Versions: 4

Compression:

Stored size: 1.5 KB

Contents

# Buildium::ToDoTaskPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **title** | **String** | Request title. The title can not exceed 127 characters. |  |
| **description** | **String** | Request description. The description can not exceed 65500 characters. | [optional] |
| **category_id** | **Integer** | The category identifier to assign the request. | [optional] |
| **sub_category_id** | **Integer** | The subcategory identifier to assign the request. | [optional] |
| **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. |  |
| **task_status** | **String** | Request status. |  |
| **priority** | **String** | Request priority. |  |
| **due_date** | **Date** | Request due date. The date must be formatted as YYYY-MM-DD. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::ToDoTaskPostMessage.new(
  title: null,
  description: null,
  category_id: null,
  sub_category_id: null,
  property_id: null,
  unit_id: null,
  assigned_to_user_id: null,
  task_status: null,
  priority: null,
  due_date: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

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