UNPKG

@hachther/mesomb-browser

Version:

JS client for browser to perform mobile payment operation with MeSomb

13 lines (12 loc) 375 B
import Transaction from "./Transaction"; export default class TransactionResponse { readonly success: boolean; message: string; redirect: string; transaction: Transaction; reference: string; status: 'SUCCESS' | 'FAILED' | 'PENDING'; constructor(data: Record<string, any>); isOperationSuccess(): boolean; isTransactionSuccess(): boolean; }