Sha256: f76c76e17064b49d3414b1c49dfb1ac3f72e61749fc03b165b5a5db9d1dd54ec
Contents?: true
Size: 1.37 KB
Versions: 4
Compression:
Stored size: 1.37 KB
Contents
# Buildium::BillPostMessage ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **date** | **Date** | The date that the bill 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 is due to the vendor. The due date must be after the value in the `Date` field. 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. | | | **work_order_id** | **Integer** | Unique identifier of the work order associated with this bill. | [optional] | | **reference_number** | **String** | The reference or invoice number that the vendor assigned to the invoice. The value cannot exceed 40 characters. | [optional] | | **lines** | [**Array<BillLinePostMessage>**](BillLinePostMessage.md) | A collection of line items associated with the bill. | | ## Example ```ruby require 'buildium-ruby' instance = Buildium::BillPostMessage.new( date: null, due_date: null, memo: null, vendor_id: null, work_order_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/BillPostMessage.md |
buildium-ruby-3.0.0 | docs/BillPostMessage.md |
buildium-ruby-2.1.0 | docs/BillPostMessage.md |
buildium-ruby-2.0.1 | docs/BillPostMessage.md |