Sha256: ef8460bcbea2906ad8757c4677c08225b31c050c81189f45309a13cf9c52dfa8

Contents?: true

Size: 1.55 KB

Versions: 3

Compression:

Stored size: 1.55 KB

Contents

# Buildium::VendorSearchMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **status** | **String** | Filters results by the status of the vendor. If no status is specified both `active` and `inactive` vendors will be returned. | [optional] |
| **email** | **String** | Filters results to any vendor whose email *contains* the specified value. | [optional] |
| **website** | **String** | Filters results to any vendor whose website *contains* the specified value. | [optional] |
| **name** | **String** | Filters results to any vendor whose name *contains* the specified value. | [optional] |
| **insurance_expiration** | **String** | Filters results to any vendor whose insurance will expire in the specified date range. | [optional] |
| **phone** | **String** | Filters results to any vendor who has a phone number that *contains* the specified value. | [optional] |
| **last_updated_from** | **Time** | Filters results to any vendors that were updated on or after the specified date. The value must be in UTC and formatted as YYYY-MM-DDTHH:MM:SSZ. | [optional] |
| **last_updated_to** | **Time** | Filters results to any vendors that were updated on or before the specified date. The value must be in UTC and formatted as YYYY-MM-DDTHH:MM:SSZ. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::VendorSearchMessage.new(
  status: null,
  email: null,
  website: null,
  name: null,
  insurance_expiration: null,
  phone: null,
  last_updated_from: null,
  last_updated_to: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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