# Buildium::ContactDetailSavePhoneMessage ## Properties | Name | Type | Description | Notes | | ---- | ---- | ----------- | ----- | | **home** | **String** | Home phone number. If provided, the value must be between 10 and 20 characters, ideally formatted as `(123) 123-1234`. | [optional] | | **work** | **String** | Work phone number. If provided, the value must be between 10 and 20 characters, ideally formatted as `(123) 123-1234`. | [optional] | | **mobile** | **String** | Mobile phone number. If provided, the value must be between 10 and 20 characters, ideally formatted as `(123) 123-1234`. | [optional] | ## Example ```ruby require 'buildium-ruby' instance = Buildium::ContactDetailSavePhoneMessage.new( home: null, work: null, mobile: null ) ```