MadelineProtoDocs/old_docs/API_docs_v30/constructors/labeledPrice.md

40 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2020-06-16 17:50:25 +02:00
---
title: labeledPrice
description: This object represents a portion of the price for goods or services.
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: labeledPrice
[Back to constructors index](index.md)
This object represents a portion of the price for goods or services.
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|label|[string](../types/string.md) | Yes|Portion label|
|amount|[long](../types/long.md) | Yes|Price of the product in the smallest units of the currency (integer, not float/double). For example, for a price of `US$ 1.45` pass `amount = 145`. See the exp parameter in [currencies.json](https://core.telegram.org/bots/payments/currencies.json), it shows the number of digits past the decimal point for each currency (2 for the majority of currencies).|
### Type: [LabeledPrice](../types/LabeledPrice.md)
### Example:
```php
$labeledPrice = ['_' => 'labeledPrice', 'label' => 'string', 'amount' => long];
```
Or, if you're into Lua:
```lua
labeledPrice={_='labeledPrice', label='string', amount=long}
```