Sha256: a8604bc753c07770f2c91d7928fe2367056b33d633da58403f76978f5a3a2e00

Contents?: true

Size: 1.19 KB

Versions: 4

Compression:

Stored size: 1.19 KB

Contents

# Buildium::BillPutMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **date** | **Date** | The date that an invoice was received. This date typically corresponds with a Bill Received Date, Invoice Date, or Invoice Received Date from an invoice. The date must be formatted as YYYY-MM-DD. |  |
| **due_date** | **Date** | The date that payment for a bill is due to the vendor. The date must be formatted as YYYY-MM-DD. |  |
| **memo** | **String** | A description of what the invoice was for. The value cannot exceed 245 characters. | [optional] |
| **vendor_id** | **Integer** | The unique identifier of the vendor or supplier who sent you an invoice. |  |
| **reference_number** | **String** | The reference or invoice number that the vendor assigned to the invoice. The value cannot exceed 40 characters. | [optional] |
| **lines** | [**Array<BillLinePutMessage>**](BillLinePutMessage.md) | A collection of line items associated with the bill. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::BillPutMessage.new(
  date: null,
  due_date: null,
  memo: null,
  vendor_id: null,
  reference_number: null,
  lines: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

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