MadelineProtoDocs/old_docs/API_docs_v105/constructors/labeledPrice.md

40 lines
1.1 KiB
Markdown
Raw Permalink Normal View History

2019-09-13 17:13:55 +02:00
---
title: labeledPrice
2019-12-27 17:48:04 +01:00
description: This object represents a portion of the price for goods or services.
2019-09-13 17:13:55 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: labeledPrice
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
This object represents a portion of the price for goods or services.
2019-09-13 17:13:55 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|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).|
2019-09-13 17:13:55 +02:00
### 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}
```