pub struct RefundedPayment {
pub total_amount: i64,
pub invoice_payload: String,
pub telegram_payment_charge_id: String,
pub provider_payment_charge_id: Option<String>,
}Expand description
This object contains basic information about a refunded payment.
API Reference: link
Fields§
§total_amount: i64Total 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).
invoice_payload: StringBot-specified invoice payload
telegram_payment_charge_id: StringTelegram payment identifier
provider_payment_charge_id: Option<String>Optional. Provider payment identifier
Trait Implementations§
Source§impl Clone for RefundedPayment
impl Clone for RefundedPayment
Source§fn clone(&self) -> RefundedPayment
fn clone(&self) -> RefundedPayment
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RefundedPayment
impl Debug for RefundedPayment
Source§impl Default for RefundedPayment
impl Default for RefundedPayment
Source§fn default() -> RefundedPayment
fn default() -> RefundedPayment
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RefundedPayment
impl<'de> Deserialize<'de> for RefundedPayment
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl PartialEq for RefundedPayment
impl PartialEq for RefundedPayment
Source§fn eq(&self, other: &RefundedPayment) -> bool
fn eq(&self, other: &RefundedPayment) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for RefundedPayment
impl Serialize for RefundedPayment
impl StructuralPartialEq for RefundedPayment
Auto Trait Implementations§
impl Freeze for RefundedPayment
impl RefUnwindSafe for RefundedPayment
impl Send for RefundedPayment
impl Sync for RefundedPayment
impl Unpin for RefundedPayment
impl UnsafeUnpin for RefundedPayment
impl UnwindSafe for RefundedPayment
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more