Sha256: bbd9783776ed45defcbd5480cbf1ebe8ea5f304c5f915be01397fc0cab7d96fe

Contents?: true

Size: 1.08 KB

Versions: 3

Compression:

Stored size: 1.08 KB

Contents

# Buildium::FileMessage

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **id** | **Integer** | File unique identifier. | [optional] |
| **file_entity** | [**FileEntityMessage**](FileEntityMessage.md) |  | [optional] |
| **category_id** | **Integer** | The category identifier assigned to this file. | [optional] |
| **title** | **String** | Title of the file. | [optional] |
| **description** | **String** | Description of the file. | [optional] |
| **physical_file_name** | **String** | Physical name of the file on the server. | [optional] |
| **size** | **Integer** | Size of the file. Unit of measure is bytes. | [optional] |
| **content_type** | **String** | MIME type of the file. | [optional] |
| **uploaded_date_time** | **Time** | Date the file was uploaded. | [optional] |

## Example

```ruby
require 'buildium-ruby'

instance = Buildium::FileMessage.new(
  id: null,
  file_entity: null,
  category_id: null,
  title: null,
  description: null,
  physical_file_name: null,
  size: null,
  content_type: null,
  uploaded_date_time: null
)
```

Version data entries

3 entries across 3 versions & 1 rubygems

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