Sha256: 06568e5536d0a104c8f284fb8783a7f267af1e38cb769cac87a264800aae731f

Contents?: true

Size: 1.83 KB

Versions: 3

Compression:

Stored size: 1.83 KB

Contents

# Buildium::WorkOrderPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **work_details** | **String** | Description of the work order. The value cannot exceed 65,535 characters. | [optional] |
| **invoice_number** | **String** | The invoice or reference number that the vendor assigned to the work order. The value cannot exceed 50 characters. | [optional] |
| **chargeable_to** | **String** | A description of the entity that will be charged for the work. The value cannot exceed 100 characters. | [optional] |
| **entry_allowed** | **String** | Indicates whether entry has been allowed to the unit. |  |
| **entry_notes** | **String** | Notes specific to entering the unit. The value cannot exceed 65,535 characters. | [optional] |
| **vendor_id** | **Integer** | Vendor unique identifier. |  |
| **vendor_notes** | **String** | Notes specific to the vendor. The value cannot exceed 65,535 characters. | [optional] |
| **entry_contact_id** | **Integer** | Contact user unique identifier. The user type must be one of the following types: `RentalTenant`, `AssociationOwner`, `Staff`, `RentalOwner`. | [optional] |
| **line_items** | [**Array<WorkOrderLineItemSaveMessage>**](WorkOrderLineItemSaveMessage.md) | Work order line items. | [optional] |
| **task_id** | **Integer** | Task unique identifier to associate with the work order. | [optional] |
| **task** | [**WorkOrderTaskPostMessage**](WorkOrderTaskPostMessage.md) |  | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::WorkOrderPostMessage.new(
  work_details: null,
  invoice_number: null,
  chargeable_to: null,
  entry_allowed: null,
  entry_notes: null,
  vendor_id: null,
  vendor_notes: null,
  entry_contact_id: null,
  line_items: null,
  task_id: null,
  task: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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