pub struct VirtualAccountTransaction {Show 14 fields
pub originator_account_number: Option<String>,
pub amount: Option<String>,
pub originator_name: Option<String>,
pub narration: Option<String>,
pub cr_account_name: Option<String>,
pub payment_reference: Option<String>,
pub bank_name: Option<String>,
pub session_id: Option<String>,
pub cr_account: Option<String>,
pub bank_code: Option<String>,
pub request_date: Option<String>,
pub nibss_response: Option<String>,
pub send_status: Option<String>,
pub send_response: Option<String>,
}Expand description
A settled inflow row returned by query_transactions
(server type: the items of TransQueryResponse.transactions).
Fields§
§originator_account_number: Option<String>Payer’s account number.
amount: Option<String>Amount credited (the API returns this as a string).
originator_name: Option<String>Payer’s name.
narration: Option<String>Transfer narration.
cr_account_name: Option<String>Name on the credited virtual account.
payment_reference: Option<String>Payment reference.
bank_name: Option<String>Payer’s bank name.
session_id: Option<String>NIP session id (globally unique per credit — use as an idempotency key).
cr_account: Option<String>The virtual account number that was credited.
bank_code: Option<String>Payer’s bank code.
request_date: Option<String>When the inflow was requested.
nibss_response: Option<String>Raw NIBSS response.
send_status: Option<String>Status of the onward send to your webhook.
send_response: Option<String>Response your webhook returned.
Trait Implementations§
Source§impl Clone for VirtualAccountTransaction
impl Clone for VirtualAccountTransaction
Source§fn clone(&self) -> VirtualAccountTransaction
fn clone(&self) -> VirtualAccountTransaction
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 VirtualAccountTransaction
impl Debug for VirtualAccountTransaction
Source§impl<'de> Deserialize<'de> for VirtualAccountTransaction
impl<'de> Deserialize<'de> for VirtualAccountTransaction
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 VirtualAccountTransaction
impl RefUnwindSafe for VirtualAccountTransaction
impl Send for VirtualAccountTransaction
impl Sync for VirtualAccountTransaction
impl Unpin for VirtualAccountTransaction
impl UnsafeUnpin for VirtualAccountTransaction
impl UnwindSafe for VirtualAccountTransaction
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