# Buildium::RentalAppliancePutMessage ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **unit_id** | **Integer** | The unit identifier the rental appliance belongs to. Must be within the rental property the appliance is in. | [optional] | | **name** | **String** | The name of the rental appliance. The name cannot exceed 100 characters. | | | **make** | **String** | The make of the rental appliance. The make cannot exceed 30 characters. | [optional] | | **model** | **String** | The model of the rental appliance. The model cannot exceed 30 characters. | [optional] | | **description** | **String** | The description of the rental appliance. The description cannot exceed 500 characters. | [optional] | | **warranty_end_date** | **Date** | The end date for the rental 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::RentalAppliancePutMessage.new( unit_id: null, name: null, make: null, model: null, description: null, warranty_end_date: null ) ```