-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Telegram Bot API July 7, 2024 updates (v7.7)
- Loading branch information
Showing
5 changed files
with
65 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
25 changes: 25 additions & 0 deletions
25
telegramium-core/src/main/scala/telegramium/bots/RefundedPayment.scala
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
package telegramium.bots | ||
|
||
/** This object contains basic information about a refunded payment. | ||
* | ||
* @param currency | ||
* Three-letter ISO 4217 currency code, or “XTR” for payments in Telegram Stars. Currently, always “XTR” | ||
* @param totalAmount | ||
* Total refunded price in the smallest units of the currency (integer, not float/double). For example, for a price | ||
* of US$ | ||
* 1.45, total_amount = 145. See the exp parameter in currencies.json, it shows the number of digits past the decimal | ||
* point for each currency (2 for the majority of currencies). | ||
* @param invoicePayload | ||
* Bot-specified invoice payload | ||
* @param telegramPaymentChargeId | ||
* Telegram payment identifier | ||
* @param providerPaymentChargeId | ||
* Optional. Provider payment identifier | ||
*/ | ||
final case class RefundedPayment( | ||
currency: String, | ||
totalAmount: Int, | ||
invoicePayload: String, | ||
telegramPaymentChargeId: String, | ||
providerPaymentChargeId: Option[String] = Option.empty | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters