Sha256: ced7d92edcf4c35010c3eb7b3a63d25bfc10f07d88a402c29ea329adf3268091

Contents?: true

Size: 1.86 KB

Versions: 3

Compression:

Stored size: 1.86 KB

Contents

# Buildium::RentalTenantPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **lease_id** | **Integer** | Lease ID to associate the tenant with. |  |
| **first_name** | **String** | First name of the tenant. The value cannot exceed 127 characters. |  |
| **last_name** | **String** | Last name of the tenant. The value cannot exceed 127 characters. |  |
| **email** | **String** | Email of the tenant. | [optional] |
| **alternate_email** | **String** | Alternate email of the tenant. | [optional] |
| **phone_numbers** | [**PhoneNumbersMessage**](PhoneNumbersMessage.md) |  | [optional] |
| **date_of_birth** | **Date** | Date of birth for the tenant. Must be formatted as `YYYY-MM-DD`. | [optional] |
| **comment** | **String** | Comments about the tenant. The value cannot exceed 65,535 characters. | [optional] |
| **tax_id** | **String** | Tax identifier of the tenant. Valid formats are: `12-1234567`, `123-12-1234`, `123456789` | [optional] |
| **emergency_contact** | [**SaveEmergencyContactMessage**](SaveEmergencyContactMessage.md) |  | [optional] |
| **address** | [**SaveAddressMessage**](SaveAddressMessage.md) |  |  |
| **alternate_address** | [**SaveAddressMessage**](SaveAddressMessage.md) |  | [optional] |
| **mailing_preference** | **String** | Mailing preference for the tenant. If an alternate address exists and this value is not provided then the primary address will be set as the preferred address. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::RentalTenantPostMessage.new(
  lease_id: null,
  first_name: null,
  last_name: null,
  email: null,
  alternate_email: null,
  phone_numbers: null,
  date_of_birth: null,
  comment: null,
  tax_id: null,
  emergency_contact: null,
  address: null,
  alternate_address: null,
  mailing_preference: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
buildium-ruby-3.0.0 docs/RentalTenantPostMessage.md
buildium-ruby-2.1.0 docs/RentalTenantPostMessage.md
buildium-ruby-2.0.1 docs/RentalTenantPostMessage.md