Sha256: bf6dddcbc17a4a6c2e7b05e309c6c6d4c38451bb430f3a74a17257f9cb1b5e65

Contents?: true

Size: 754 Bytes

Versions: 13

Compression:

Stored size: 754 Bytes

Contents

# ElasticEmail::FileInfo

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **file_name** | **String** | Name of your file including extension. | [optional] |
| **size** | **Integer** | Size of your attachment (in bytes). | [optional] |
| **date_added** | **Time** | Date of creation in YYYY-MM-DDThh:ii:ss format | [optional] |
| **expiration_date** | **Time** | Date when the file will be deleted from your Account. | [optional] |
| **content_type** | **String** | Content type of the file. | [optional] |

## Example

```ruby
require 'ElasticEmail'

instance = ElasticEmail::FileInfo.new(
  file_name: filename.txt,
  size: 100,
  date_added: null,
  expiration_date: null,
  content_type: image/jpeg
)
```

Version data entries

13 entries across 13 versions & 1 rubygems

Version Path
ElasticEmail-4.0.26 docs/FileInfo.md
ElasticEmail-4.0.25 docs/FileInfo.md
ElasticEmail-4.0.24 docs/FileInfo.md
ElasticEmail-4.0.23 docs/FileInfo.md
ElasticEmail-4.0.22 docs/FileInfo.md
ElasticEmail-4.0.21 docs/FileInfo.md
ElasticEmail-4.0.20 docs/FileInfo.md
ElasticEmail-4.0.16 docs/FileInfo.md
ElasticEmail-4.0.15 docs/FileInfo.md
ElasticEmail-4.0.13 docs/FileInfo.md
ElasticEmail-4.0.12 docs/FileInfo.md
ElasticEmail-4.0.11 docs/FileInfo.md
ElasticEmail-4.0.1 docs/FileInfo.md