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

18 lines (17 loc) 337 B
"use strict"; import { PaymentType } from "../../../payment_type.js"; export class StcPayRequestSource { type = PaymentType.stcPay; constructor({ mobile }) { this.mobile = mobile; } toJson() { return { type: this.type, mobile: this.mobile }; } } //# sourceMappingURL=stc_pay_request_source.js.map