Sha256: 549496876d5302bc1c34b5e94a9ecee4151a2c5853fdb78b299904bcff14f9e3
Contents?: true
Size: 1.37 KB
Versions: 4
Compression:
Stored size: 1.37 KB
Contents
# Buildium::RentalAppliancePostMessage ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **property_id** | **Integer** | Rental property unique identifier that the appliance belongs to. | | | **unit_id** | **Integer** | Rental unit unique identifier that the appliance belongs to. | [optional] | | **name** | **String** | The name of the appliance. The name cannot exceed 100 characters. | | | **make** | **String** | The make of the appliance. The make cannot exceed 30 characters. | [optional] | | **model** | **String** | The model of the appliance. The model cannot exceed 30 characters. | [optional] | | **description** | **String** | The description of the appliance. The description cannot exceed 500 characters. | [optional] | | **install_date** | **Date** | The install date for the appliance's warranty. Must be formatted as `YYYY-MM-DD`. | [optional] | | **warranty_end_date** | **Date** | The end date for the appliance's warranty. The warranty's end date cannot be before the installed date, if it exists. Must be formatted as `YYYY-MM-DD`. | [optional] | ## Example ```ruby require 'buildium-ruby' instance = Buildium::RentalAppliancePostMessage.new( property_id: null, unit_id: null, name: null, make: null, model: null, description: null, install_date: null, warranty_end_date: null ) ```
Version data entries
4 entries across 4 versions & 1 rubygems