pub trait Verify {
// Required method
fn verify_transaction<'life0, 'async_trait>(
&'life0 self,
reference: String,
) -> Pin<Box<dyn Future<Output = VerificationResult<VerificationData>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}Expand description
Verify transactions
Required Methods§
Sourcefn verify_transaction<'life0, 'async_trait>(
&'life0 self,
reference: String,
) -> Pin<Box<dyn Future<Output = VerificationResult<VerificationData>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
fn verify_transaction<'life0, 'async_trait>(
&'life0 self,
reference: String,
) -> Pin<Box<dyn Future<Output = VerificationResult<VerificationData>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Verify the status of a transaction, given the reference of the transaction