pub struct ChatRevenueTransactionTypeRefund {
pub refund_date: i32,
pub provider: String,
}
Expand description
Describes a refund for failed withdrawal of earnings
Fields§
§refund_date: i32
Point in time (Unix timestamp) when the transaction was refunded
provider: String
Name of the payment provider
Trait Implementations§
Source§impl Clone for ChatRevenueTransactionTypeRefund
impl Clone for ChatRevenueTransactionTypeRefund
Source§fn clone(&self) -> ChatRevenueTransactionTypeRefund
fn clone(&self) -> ChatRevenueTransactionTypeRefund
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Default for ChatRevenueTransactionTypeRefund
impl Default for ChatRevenueTransactionTypeRefund
Source§fn default() -> ChatRevenueTransactionTypeRefund
fn default() -> ChatRevenueTransactionTypeRefund
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ChatRevenueTransactionTypeRefund
impl<'de> Deserialize<'de> for ChatRevenueTransactionTypeRefund
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 ChatRevenueTransactionTypeRefund
impl PartialEq for ChatRevenueTransactionTypeRefund
Source§fn eq(&self, other: &ChatRevenueTransactionTypeRefund) -> bool
fn eq(&self, other: &ChatRevenueTransactionTypeRefund) -> bool
Tests for
self
and other
values to be equal, and is used by ==
.impl StructuralPartialEq for ChatRevenueTransactionTypeRefund
Auto Trait Implementations§
impl Freeze for ChatRevenueTransactionTypeRefund
impl RefUnwindSafe for ChatRevenueTransactionTypeRefund
impl Send for ChatRevenueTransactionTypeRefund
impl Sync for ChatRevenueTransactionTypeRefund
impl Unpin for ChatRevenueTransactionTypeRefund
impl UnwindSafe for ChatRevenueTransactionTypeRefund
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