pub struct Transfer {Show 17 fields
pub amount: i64,
pub amount_reversed: i64,
pub balance_transaction: Option<Value>,
pub created: i64,
pub currency: String,
pub description: Option<String>,
pub destination: Option<Value>,
pub destination_payment: Option<Value>,
pub id: String,
pub livemode: bool,
pub metadata: Value,
pub object: String,
pub reversals: TransferReversalList,
pub reversed: bool,
pub source_transaction: Option<Value>,
pub source_type: Option<String>,
pub transfer_group: Option<String>,
}Fields§
§amount: i64§amount_reversed: i64§balance_transaction: Option<Value>§created: i64§currency: String§description: Option<String>§destination: Option<Value>§destination_payment: Option<Value>§id: String§livemode: bool§metadata: Value§object: String§reversals: TransferReversalList§reversed: bool§source_transaction: Option<Value>§source_type: Option<String>§transfer_group: Option<String>Trait Implementations§
source§impl<'de> Deserialize<'de> for Transfer
impl<'de> Deserialize<'de> for Transfer
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
Auto Trait Implementations§
impl RefUnwindSafe for Transfer
impl Send for Transfer
impl Sync for Transfer
impl Unpin for Transfer
impl UnwindSafe for Transfer
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