MadelineProtoDocs/docs/API_docs/constructors/urlAuthResultAccepted.md

39 lines
957 B
Markdown
Raw Normal View History

2019-06-23 13:07:51 +02:00
---
title: urlAuthResultAccepted
2019-12-27 17:48:04 +01:00
description: Details about an accepted authorization request, for more info [click here »](https://core.telegram.org/api/url-authorization)
2019-06-23 13:07:51 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: urlAuthResultAccepted
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Details about an accepted authorization request, for more info [click here »](https://core.telegram.org/api/url-authorization)
2019-06-23 13:07:51 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|url|[string](../types/string.md) | Yes|The URL name of the website on which the user has logged in.|
2019-06-23 13:07:51 +02:00
### Type: [UrlAuthResult](../types/UrlAuthResult.md)
### Example:
```php
$urlAuthResultAccepted = ['_' => 'urlAuthResultAccepted', 'url' => 'string'];
```
Or, if you're into Lua:
```lua
urlAuthResultAccepted={_='urlAuthResultAccepted', url='string'}
```