MadelineProtoDocs/docs/API_docs/constructors/urlAuthResultAccepted.md
2019-06-23 13:07:51 +02:00

39 lines
698 B
Markdown

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