pub struct Transaction {Show 21 fields
pub id: String,
pub tx_ref: String,
pub flw_ref: String,
pub device_fingerprint: String,
pub amount: i64,
pub currency: String,
pub charged_amount: i64,
pub app_fee: Option<f64>,
pub merchant_fee: i64,
pub processor_response: Option<String>,
pub auth_model: String,
pub ip: String,
pub narration: String,
pub status: String,
pub payment_type: String,
pub created_at: String,
pub amount_settled: Option<f64>,
pub account: TransAccount,
pub customer_name: String,
pub customer_email: String,
pub account_id: String,
}Fields§
§id: String§tx_ref: String§flw_ref: String§device_fingerprint: String§amount: i64§currency: String§charged_amount: i64§app_fee: Option<f64>§merchant_fee: i64§processor_response: Option<String>§auth_model: String§ip: String§narration: String§status: String§payment_type: String§created_at: String§amount_settled: Option<f64>§account: TransAccount§customer_name: String§customer_email: String§account_id: StringTrait Implementations§
Source§impl Debug for Transaction
impl Debug for Transaction
Source§impl<'de> Deserialize<'de> for Transaction
impl<'de> Deserialize<'de> for Transaction
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 Freeze for Transaction
impl RefUnwindSafe for Transaction
impl Send for Transaction
impl Sync for Transaction
impl Unpin for Transaction
impl UnwindSafe for Transaction
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
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more