Sha256: d988f3260daae5a687df30963c4bbc73156a2966fcdc56ba1c138a7093196b58

Contents?: true

Size: 1.84 KB

Versions: 3

Compression:

Stored size: 1.84 KB

Contents

# Buildium::PhoneLogSearchMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **from_date** | **Date** | Filters results to any phone log whose call date is greater than or equal to the specified value. | [optional] |
| **to_date** | **Date** | Filters results to any phone log whose call date is less than or equal to the specified value. | [optional] |
| **logged_by_staff_user_ids** | **Array<Integer>** | Filters results to any phone log that was logged by staff user(s). | [optional] |
| **subject** | **String** | Filters results to any phone log whose subject *contains* the specified value. | [optional] |
| **participant_entity_id** | **Integer** | Filters results to any phone logs that match the participant identifier. Note, if a value is provided in this field the `ParticipantEntityType` must also be provided. | [optional] |
| **participant_entity_type** | **String** | Filters results to any phone log with the specified participant type. This field is required if a value is provided for the `ParticipantEntityId` field. | [optional] |
| **unit_agreement_id** | **Integer** | Filters results to any phone log with the specified unit agreement identifier. Note, if a value is provided in this field the `UnitAgreementType` must also be provided. | [optional] |
| **unit_agreement_type** | **String** | Filters results to any phone log with the specified unit agreement type. This field is required if a value is provided for the `UnitAgreementId` field. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::PhoneLogSearchMessage.new(
  from_date: null,
  to_date: null,
  logged_by_staff_user_ids: null,
  subject: null,
  participant_entity_id: null,
  participant_entity_type: null,
  unit_agreement_id: null,
  unit_agreement_type: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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