mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-02 09:38:28 +01:00
30 lines
754 B
Markdown
30 lines
754 B
Markdown
---
|
|
title: "businessIntro"
|
|
description: "businessIntro attributes, type and example"
|
|
nav_exclude: true
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
---
|
|
# Constructor: businessIntro
|
|
[Back to constructors index](/API_docs/constructors/index.html)
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
| Name | Type | Required |
|
|
|----------|---------------|----------|
|
|
|title|[string](/API_docs/types/string.html) | Yes|
|
|
|description|[string](/API_docs/types/string.html) | Yes|
|
|
|sticker|[Document](/API_docs/types/Document.html) | Optional|
|
|
|
|
|
|
|
|
### Type: [BusinessIntro](/API_docs/types/BusinessIntro.html)
|
|
|
|
|
|
### Example:
|
|
|
|
```
|
|
$businessIntro = ['_' => 'businessIntro', 'title' => 'string', 'description' => 'string', 'sticker' => Document];
|
|
```
|