39 lines
576 B
Markdown
39 lines
576 B
Markdown
|
---
|
||
|
title: emojiURL
|
||
|
description: Emoji URL
|
||
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
||
|
---
|
||
|
# Constructor: emojiURL
|
||
|
[Back to constructors index](index.md)
|
||
|
|
||
|
|
||
|
|
||
|
Emoji URL
|
||
|
|
||
|
### Attributes:
|
||
|
|
||
|
| Name | Type | Required | Description |
|
||
|
|----------|---------------|----------|-------------|
|
||
|
|url|[string](../types/string.md) | Yes|URL|
|
||
|
|
||
|
|
||
|
|
||
|
### Type: [EmojiURL](../types/EmojiURL.md)
|
||
|
|
||
|
|
||
|
### Example:
|
||
|
|
||
|
```php
|
||
|
$emojiURL = ['_' => 'emojiURL', 'url' => 'string'];
|
||
|
```
|
||
|
|
||
|
|
||
|
Or, if you're into Lua:
|
||
|
|
||
|
```lua
|
||
|
emojiURL={_='emojiURL', url='string'}
|
||
|
|
||
|
```
|
||
|
|
||
|
|