Sha256: 43c369bd766346a30b4de25c8ee6a151ae8f5166c0f1782e42fdcab2b47b1bca
Contents?: true
Size: 1.37 KB
Versions: 1
Compression:
Stored size: 1.37 KB
Contents
# Buildium::CreateRentalApplianceRequest ## 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::CreateRentalApplianceRequest.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
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
buildium-ruby-3.1.0 | docs/CreateRentalApplianceRequest.md |