Sha256: 21e0ec1f759c37dc9a880ae539322c0d41a3e3d4cede672bdc4cc3460a4098c9
Contents?: true
Size: 1.19 KB
Versions: 1
Compression:
Stored size: 1.19 KB
Contents
# Buildium::UpdateBillRequest ## 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::UpdateBillRequest.new( date: null, due_date: null, memo: null, vendor_id: null, reference_number: null, lines: null ) ```
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildium-ruby-3.1.0 | docs/UpdateBillRequest.md |