UNPKG

react-native-moyasar-sdk

Version:

Official React Native Moyasar SDK - Integrate Credit Cards, Apple Pay, Samsung Pay, and STC Pay with simple interfaces for a seamless payment experience in your React Native app

20 lines (18 loc) 292 B
export class WebviewPaymentAuthResponse { id: string; status: string; message: string; constructor({ id, status, message, }: { id: string; status: string; message: string; }) { this.id = id; this.status = status; this.message = message; } }