mirror of
https://github.com/danog/MadelineProto.git
synced 2024-11-27 12:35:16 +01:00
32 lines
909 B
Markdown
32 lines
909 B
Markdown
|
---
|
||
|
title: document
|
||
|
description: document attributes, type and example
|
||
|
---
|
||
|
## Constructor: document
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|id|[long](../types/long.md) | Required|
|
||
|
|access\_hash|[long](../types/long.md) | Required|
|
||
|
|date|[int](../types/int.md) | Required|
|
||
|
|mime\_type|[string](../types/string.md) | Required|
|
||
|
|size|[int](../types/int.md) | Required|
|
||
|
|thumb|[PhotoSize](../types/PhotoSize.md) | Required|
|
||
|
|dc\_id|[int](../types/int.md) | Required|
|
||
|
|attributes|Array of [DocumentAttribute](../types/DocumentAttribute.md) | Required|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [Document](../types/Document.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```
|
||
|
$document = ['_' => 'document', 'id' => long, 'access_hash' => long, 'date' => int, 'mime_type' => string, 'size' => int, 'thumb' => PhotoSize, 'dc_id' => int, 'attributes' => [Vector t], ];
|
||
|
```
|