mirror of
https://github.com/danog/MadelineProto.git
synced 2024-12-12 01:00:55 +01:00
22 lines
610 B
Markdown
22 lines
610 B
Markdown
|
## Constructor: foundGif
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required |
|
||
|
|----------|:-------------:|---------:|
|
||
|
|url|[string](../types/string.md) | Required|
|
||
|
|thumb\_url|[string](../types/string.md) | Required|
|
||
|
|content\_url|[string](../types/string.md) | Required|
|
||
|
|content\_type|[string](../types/string.md) | Required|
|
||
|
|w|[int](../types/int.md) | Required|
|
||
|
|h|[int](../types/int.md) | Required|
|
||
|
|
||
|
|
||
|
### Type: [FoundGif](../types/FoundGif.md)
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
|
||
|
```
|
||
|
$foundGif = ['url' => string, 'thumb_url' => string, 'content_url' => string, 'content_type' => string, 'w' => int, 'h' => int, ];
|
||
|
```
|