Sha256: 7d6f3616f845b8ff56f8bdd21cbf82968082e2eee39a755bf019f98b99bb4ab2

Contents?: true

Size: 1.68 KB

Versions: 4

Compression:

Stored size: 1.68 KB

Contents

# Buildium::AnnouncementPostMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **subject** | **String** | The subject of the announcement. Note, this will only show up in announcements sent via email and in the Resident Center. The value cannot exceed 100 characters. |  |
| **body** | **String** | The content of the announcement. The value cannot exceed 65535 characters. Note: if your message is over 140 characters, the announcement will not be sent via SMS. Announcement texts are available for US numbers only. |  |
| **expiration_date** | **Date** | Optional date that indicates when the announcement should be removed from the Resident Center. If no date is provided the announcement will appear indefinitely The date must be formatted as YYYY-MM-DD. | [optional] |
| **notify_association_tenants** | **Boolean** | Indicates whether to include notifying the association tenants in addition to the association owners when publishing the announcement. Note this is only pertains to announcements sent to residents of `Association` properties. |  |
| **include_alternate_email** | **Boolean** | Indicates whether to send the announcement to alternate emails in addition to the main email addresses when publishing the announcement. |  |
| **property_ids** | **Array<Integer>** | A list of association and/or rental property unique identifiers whose residents should receive the announcement. |  |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::AnnouncementPostMessage.new(
  subject: null,
  body: null,
  expiration_date: null,
  notify_association_tenants: null,
  include_alternate_email: null,
  property_ids: null
)
```

Version data entries

4 entries across 4 versions & 1 rubygems

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