MadelineProto/old_docs/API_docs_v27/constructors/inputUserForeign.md

44 lines
764 B
Markdown
Raw Normal View History

---
title: inputUserForeign
description: inputUserForeign attributes, type and example
---
## Constructor: inputUserForeign
[Back to constructors index](index.md)
### Attributes:
| Name | Type | Required |
|----------|:-------------:|---------:|
|user\_id|[int](../types/int.md) | Yes|
|access\_hash|[long](../types/long.md) | Yes|
### Type: [InputUser](../types/InputUser.md)
### Example:
```
$inputUserForeign = ['_' => 'inputUserForeign', 'user_id' => int, 'access_hash' => long, ];
```
2017-07-23 16:11:02 +02:00
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_":"inputUserForeign","user_id":"int","access_hash":"long"}
```
Or, if you're into Lua:
```
inputUserForeign={_='inputUserForeign', user_id=int, access_hash=long, }
```