Sha256: 21d92b486db577e5b703235880f52bfa05293173851c2aea674f601fdfc65ec7

Contents?: true

Size: 1.57 KB

Versions: 3

Compression:

Stored size: 1.57 KB

Contents

# Buildium::FileSearchMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **entity_id** | **Integer** | Filters results to any file associated with the specified entity identifier. This filter is used in conjunction with the `EntityType` field which must be set to the type of entity this identifier references. | [optional] |
| **entity_type** | **String** | Specifies the type of entity that `EntityId` refers to. This field is required if `EntityId` is specified. | [optional] |
| **category_id** | **Integer** | Filters results to any file associated with the specified category identifier. | [optional] |
| **title_or_description** | **String** | Filters results to files whose title or description *contains* the specified value. | [optional] |
| **uploaded_from** | **Date** | Filters results to any files that were updated on or after the specified date. The value must be formatted as YYYY-MM-DD. | [optional] |
| **uploaded_to** | **Date** | Filters results to any files that were updated on or before the specified date. The value must be formatted as YYYY-MM-DD. | [optional] |
| **physical_file_names** | **Array<String>** | Filters results to any files with a `PhysicalFileName`exactly matching one of the provided values. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::FileSearchMessage.new(
  entity_id: null,
  entity_type: null,
  category_id: null,
  title_or_description: null,
  uploaded_from: null,
  uploaded_to: null,
  physical_file_names: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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