1
0
mirror of https://github.com/InsanusMokrassar/TelegramBotAPI.git synced 2024-09-19 17:16:08 +00:00

Bot API 7.7

fixed RefundedPayment data class. providerPaymentChargeId is optional
This commit is contained in:
bpavuk 2024-07-07 20:46:58 +03:00
parent 44a8186830
commit 8c9f0ae922
No known key found for this signature in database
GPG Key ID: B501D26D9DEA9CFE

View File

@ -19,5 +19,5 @@ data class RefundedPayment(
@SerialName(telegramPaymentChargeIdField) @SerialName(telegramPaymentChargeIdField)
val telegramPaymentChargeId: TelegramPaymentChargeId, val telegramPaymentChargeId: TelegramPaymentChargeId,
@SerialName(providerPaymentChargeIdField) @SerialName(providerPaymentChargeIdField)
val providerPaymentChargeId: String val providerPaymentChargeId: String? = null
): Amounted, Currencied ): Amounted, Currencied