diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/07-01-02-integrating-mpsdk-on-ios.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/07-01-02-integrating-mpsdk-on-ios.adoc index e3a0de2ed..aa25d2cd5 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/07-01-02-integrating-mpsdk-on-ios.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/07-01-02-integrating-mpsdk-on-ios.adoc @@ -385,8 +385,8 @@ This is a code example for a basic PayPal payment: let orderItem = SDKPayECOrderItem() orderItem.name = "The Watch" - orderItem.amount = AMOUNT; - orderItem.amountCurrency = .EUR; + orderItem.amount = AMOUNT + orderItem.amountCurrency = .EUR let order = SDKPayECOrder() order.descriptor = "DEMO DESCRIPTOR" @@ -395,7 +395,7 @@ This is a code example for a basic PayPal payment: order.items = [orderItem] let payment = SDKPayECPayPalPayment() - payment.appScheme = "example"; + payment.appScheme = "example" payment.amount = AMOUNT payment.currency = "EUR" payment.transactionType = .authorization @@ -804,7 +804,7 @@ This is a code example for a basic Alipay payment: payment.currency = SDKPayECCurrencyGetISOCode(SDKPayECCurrency.USD) let localize = SDKPayECLocalize.appearance() - let locale_de = localize.locale == ._de; + let locale_de = localize.locale == ._de payment.transactionType = SDKPayECTransactionType.debit payment.ipAddress = "127.0.0.1" @@ -818,7 +818,7 @@ This is a code example for a basic Alipay payment: let order = SDKPayECOrder.init(); order.number = "180528105918955" order.detail = "DemoShop product 002" - payment.order = order; + payment.order = order payment.locale = locale_de ? SDKPayECLocale._de : SDKPayECLocale._en @@ -1216,7 +1216,6 @@ every module used in the SDK. The cardfield component is fully customizable by c . `SDKPayECCardScannerTitleLabel` . `SDKPayECCardScannerHelpLabel` . `SDKPayECScannerBrackets` -. `SDKPayECCardScannerTitleLabel` @@ -1275,7 +1274,6 @@ every module used in the SDK. The cardfield component is fully customizable by c . `SDKPayECScannerNavigationBar` . `SDKPayECIBANScannerTitleLabel` . `SDKPayECIBANScannerHelpLabel` -. `SDKPayECIBANScannerHelpLabel` . `SDKPayECScannerBrackets` //- diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/08-01-00-basic-setup-and-integration.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/08-01-00-basic-setup-and-integration.adoc index 0e110efe6..3ee549451 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/08-01-00-basic-setup-and-integration.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/08-01-00-basic-setup-and-integration.adoc @@ -53,63 +53,63 @@ pod 'mobilePaymentSDK/SEPA' |All |all payment method frameworks in one -|pod 'mobilePaymentSDK' +|pod 'Getnet' |Alipay (Cross Border) |alipay payment frameworks -|pod 'mobilePaymentSDK/Alipay' +|pod 'Getnet/Alipay' |Card |Credit Card payment frameworks -|pod 'mobilePaymentSDK/Card' +|pod 'Getnet/Card' |PayPal |PayPal payment frameworks -|pod 'mobilePaymentSDK/PayPal' +|pod 'Getnet/PayPal' |P24 (Przelewy24) |P24 payment frameworks -|pod 'mobilePaymentSDK/P24' +|pod 'mobiGetnetlePaymentSDK/P24' |SEPA (Direct Debit) |SEPA payment frameworks -|pod 'mobilePaymentSDK/SEPA' +|pod 'Getnet/SEPA' |WireTransfer |Wire-Transfer payment frameworks -|pod 'mobilePaymentSDK/WireTransfer' +|pod 'Getnet/WireTransfer' |Sofort |Sofort payment frameworks -|pod 'mobilePaymentSDK/Sofort' +|pod 'Getnet/Sofort' |RatePay |RatePay payments frameworks -|pod 'mobilePaymentSDK/RatePay' +|pod 'Getnet/RatePay' |Bizum |Bizum payments frameworks -|pod 'mobilePaymentSDK/Bizum' +|pod 'Getnet/Bizum' |Blick |Blick payments frameworks -|pod 'mobilePaymentSDK/Blick' +|pod 'Getnet/Blick' |Ideal |Ideal payments frameworks -|pod 'mobilePaymentSDK/Ideal' +|pod 'Getnet/Ideal' -MBWay +|MBWay |MBWay payments frameworks -|pod 'mobilePaymentSDK/MBWay' +|pod 'Getnet/MBWay' -Zinia +|Zinia |Zinia payments frameworks -|pod 'mobilePaymentSDK/Zinia' +|pod 'Getnet/Zinia' -MBReferencia +|MBReferencia |MB Referencia (Multibanco) payments frameworks -|pod 'mobilePaymentSDK/MBReferencia' +|pod 'Getnet/MBReferencia' |=== @@ -123,27 +123,27 @@ MBReferencia |Scanner |Card scanner framework -|pod 'mobilePaymentSDK/Scanner' +|pod 'Getnet/Scanner' |PhotoGallery |Photo Gallery frameworks -|pod 'mobilePaymentSDK/PhotoGallery' +|pod 'Getnet/PhotoGallery' |CardScanner |Credit Card payment frameworks with card scanner -|pod 'mobilePaymentSDK/CardScanner' +|pod 'Getnet/CardScanner' |CardScannerGallery |Credit Card payment frameworks with card scanner and photo gallery for card photo scanning -|pod 'mobilePaymentSDK/CardScannerGallery' +|pod 'Getnet/CardScannerGallery' |IBANScanner |SEPA payment frameworks with IBAN scanner -|pod 'mobilePaymentSDK/IBANScanner' +|pod 'Getnet/IBANScanner' |IBANScannerGallery |SEPA payment frameworks with IBAN scanner and photo gallery for card photo scanning -|pod 'mobilePaymentSDK/IBANScannerGallery' +|pod 'Getnet/IBANScannerGallery' |=== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/08-01-02-scanner.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/08-01-02-scanner.adoc index f5730063f..8fad52237 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/08-01-02-scanner.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/08-01-02-scanner.adoc @@ -136,8 +136,6 @@ every module used in the SDK. The cardfield component is fully customizable by c . `SDKPayECCardScannerTitleLabel` . `SDKPayECCardScannerHelpLabel` . `SDKPayECScannerBrackets` -. `SDKPayECCardScannerTitleLabel` - //- @@ -194,7 +192,6 @@ every module used in the SDK. The cardfield component is fully customizable by c . `SDKPayECScannerNavigationBar` . `SDKPayECIBANScannerTitleLabel` . `SDKPayECIBANScannerHelpLabel` -. `SDKPayECIBANScannerHelpLabel` . `SDKPayECScannerBrackets` //- diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-00-alipay.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-00-alipay.adoc index db36d983e..263807881 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-00-alipay.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-00-alipay.adoc @@ -53,7 +53,7 @@ This is a code example for a basic Alipay payment: payment.currency = SDKPayECCurrencyGetISOCode(SDKPayECCurrency.USD) let localize = SDKPayECLocalize.appearance() - let locale_de = localize.locale == ._de; + let locale_de = localize.locale == ._de payment.transactionType = SDKPayECTransactionType.debit payment.ipAddress = "127.0.0.1" diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-01-credit-card.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-01-credit-card.adoc index 18852f8e6..495092b64 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-01-credit-card.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-01-credit-card.adoc @@ -127,7 +127,7 @@ payment.signature = signature var tokenId: String? self.client?.make(payment, withCompletion:{(response: SDKPayECPaymentResponse?,error: Error?) in - // for each failure error object is provided; + // for each failure error object is provided if let error = error { return } @@ -157,7 +157,7 @@ payment.token = token self.client?.make(payment, withCompletion:{(response: SDKPayECPaymentResponse?,error: Error?) in - // for each failure error object is provided; + // for each failure error object is provided if let error = error { return } @@ -221,7 +221,7 @@ payment.signature = signature var parentTransactionID: String? self.client?.make(payment, withCompletion:{(response: SDKPayECPaymentResponse?,error: Error?) in - // for each failure error object is provided; + // for each failure error object is provided if let error = error { return } @@ -255,7 +255,7 @@ payment.periodic = firstPeriodicType payment.signature = signature self.client?.make(payment, withCompletion:{(response: SDKPayECPaymentResponse?,error: Error?) in - // for each failure error object is provided; + // for each failure error object is provided if let error = error { return } diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-02-paypal.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-02-paypal.adoc index 20fc7b7e8..d4f9c0265 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-02-paypal.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-02-paypal.adoc @@ -57,8 +57,8 @@ This is a code example for a basic PayPal payment: let orderItem = SDKPayECOrderItem() orderItem.name = "The Watch" - orderItem.amount = AMOUNT; - orderItem.amountCurrency = .EUR; + orderItem.amount = AMOUNT + orderItem.amountCurrency = .EUR let order = SDKPayECOrder() order.descriptor = "DEMO DESCRIPTOR" diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-04-sepa.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-04-sepa.adoc index aa91d8d9a..6aa8dd66d 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-04-sepa.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-04-sepa.adoc @@ -51,7 +51,7 @@ This is a code example for a basic SEPA payment: // Secret Key shall never be stored in application. let payment = SDKPayECSEPAPayment() - payment.appScheme = "example"; + payment.appScheme = "example" payment.amount = AMOUNT payment.currency = "EUR" payment.transactionType = .debit diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-05-wire-transfer.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-05-wire-transfer.adoc index 21cf13d74..060676835 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-05-wire-transfer.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-05-wire-transfer.adoc @@ -77,7 +77,14 @@ You can set optional parameters after the payment object is created. Check the d [#MobilePaymentSDK_iOS_WireTransfer_Visualisaton] === Visualisation --- -image::images/07-01-02-integrating-mpsdk-on-ios/iOS/wire-transfer.png[WireTransfer Screen, align=center, width=240, height=420] + +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default | Customized + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/wire-transfer.png[WireTransfer Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/wire-transfer-customized.png[WireTransfer Screen, align=center, width=240, height=420] +|=== [NOTE] ==== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-06-sofort.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-06-sofort.adoc index b9885213c..6cd6eebda 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-06-sofort.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-06-sofort.adoc @@ -82,8 +82,14 @@ You can set optional parameters after the payment object is created. Check the d [#MobilePaymentSDK_iOS_Sofort_Visualisaton] === Visualisation --- -image::images/07-01-02-integrating-mpsdk-on-ios/iOS/sofort.png[Sofort Screen, align=center, width=240, height=420] - +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default | Customized + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/sofort.png[Sofort Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/sofort-customized.png[Sofort Screen, align=center, width=240, height=420] +| +|=== [NOTE] ==== Visualization of Sofort result is up to the merchant applicaton. SDK returns Account holder, Order, Bank Acount and others parameters in payment response. It should be visualized in order for the consumer to be able to check the bank transfer. diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-07-ratepay.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-07-ratepay.adoc index cbe338ff4..05b7fa241 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-07-ratepay.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-07-ratepay.adoc @@ -182,21 +182,38 @@ You can set optional parameters after the payment object is created. Check the d [%autowidth, cols="a,a", frame=none, grid=none, role="center"] |=== -| Elv | Invoice +| Default Elv | Customized Elv -| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-1.png[RatePay Screen, align=center, width=240, height=420] | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-1.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-1-customized.png[RatePay Screen, align=center, width=240, height=420] -| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-2.png[RatePay Screen, align=center, width=240, height=420] | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-2.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-2-customized.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-3.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-elv-3-customized.png[RatePay Screen, align=center, width=240, height=420] -| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-3.png[RatePay Screen, align=center, width=240, height=420] -| |=== +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default Invoice | Customized Invoice + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-1.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-1-customized.png[RatePay Screen, align=center, width=240, height=420] + + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-2.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-2-customized.png[RatePay Screen, align=center, width=240, height=420] + + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-3.png[RatePay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ratepay-invoice-3-customized.png[RatePay Screen, align=center, width=240, height=420] + + +|=== [NOTE] ==== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-08-bizum.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-08-bizum.adoc index 1ccc37d41..3b26536a0 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-08-bizum.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-08-bizum.adoc @@ -103,10 +103,10 @@ You can set optional parameters after the payment object is created. Check the d [%autowidth, cols="a,a", frame=none, grid=none, role="center"] |=== -| Bizum +| Default | Customized | -| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/bizum-phone.png[Bizum Phone Screen, align=center, width=240, height=420] | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/bizum.png[Bizum Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/bizum-customized.png[Bizum Screen, align=center, width=240, height=420] | |=== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-blik.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-blik.adoc index fb5ed2815..5202195e0 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-blik.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-blik.adoc @@ -45,7 +45,7 @@ This is a code example for a basic Blik Level Zero payment: // 2. Initialize payment object and set mandatory properties // Parameters (amount, currency, transactionType) shall be sent to server for validation or just provided by server // and used to generate signature. Signature MUST be generated on server side. -// Signature doc: https://document-center.getneteurope.com/display/PTD/Signature+v2 +// Signature doc: https://docs.getneteurope.com/_mobile_payment_sdk.html#MobilePaymentSDK_BasicSetup_Security_Signaturev2 // Secret Key shall never be stored in application. let payment = SDKPayECBlikPayment() @@ -102,7 +102,7 @@ This is a code example for a basic Blik Redirect payment: // 2. Initialize payment object and set mandatory properties // Parameters (amount, currency, transactionType) shall be sent to server for validation or just provided by server // and used to generate signature. Signature MUST be generated on server side. -// Signature doc: https://document-center.getneteurope.com/display/PTD/Signature+v2 +// Signature doc: https://docs.getneteurope.com/_mobile_payment_sdk.html#MobilePaymentSDK_BasicSetup_Security_Signaturev2 // Secret Key shall never be stored in application. let payment = SDKPayECBlikPayment() @@ -156,10 +156,19 @@ You can set optional parameters after the payment object is created. Check the d [%autowidth, cols="a,a", frame=none, grid=none, role="center"] |=== -| ZeroLevel | Redirect +| Default ZeroLevel | Customized ZeroLevel | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/blik-zerolevel.png[Blik ZeroLevel Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/blik-zerolevel-customized.png[Blik ZeroLevel Screen, align=center, width=240, height=420] +| +|=== + +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default Redirect | Customized Redirect + | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/blik-redirect.png[Blik Redirect Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/blik-redirect-customized.png[Blik Redirect Screen, align=center, width=240, height=420] | |=== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-mbway.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-mbway.adoc index 2b6a8081f..42cc567e2 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-mbway.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-09-mbway.adoc @@ -24,7 +24,7 @@ Add to your app’s `Podfile` subspecs: [source,ruby] ---- -pod 'mobilePaymentSDK/MBWay', '~> {{version}}' +pod 'Getnet/MBWay', '~> {{version}}' ---- [#MobilePaymentSDK_iOS_MBWay_basic_payment] @@ -84,7 +84,14 @@ You can set optional parameters after the payment object is created. Check the d [#MobilePaymentSDK_iOS_MBWay_Visualisaton] === Visualisation --- -image::images/07-01-02-integrating-mpsdk-on-ios/iOS/mbway.png[MBWay Screen, align=center, width=240, height=420] +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default | Customized + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/mbway.png[MBWay Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/mbway-customized.png[MBWay Screen, align=center, width=240, height=420] +| +|=== [NOTE] ==== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-10-ideal.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-10-ideal.adoc index 867661874..da1ef95ef 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-10-ideal.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-10-ideal.adoc @@ -79,7 +79,14 @@ You can set optional parameters after the payment object is created. Check the d [#MobilePaymentSDK_iOS_Ideal_Visualisaton] === Visualisation --- -image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ideal.png[Ideal Screen, align=center, width=240, height=420] +[%autowidth, cols="a,a", frame=none, grid=none, role="center"] +|=== +| Default | Customized + +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ideal.png[iDEAL Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/ideal-customized.png[iDEAL Screen, align=center, width=240, height=420] +| +|=== [NOTE] ==== diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-11-blik.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-11-blik.adoc index 9157ca3dc..57e21aba4 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-11-blik.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-11-blik.adoc @@ -21,7 +21,7 @@ Add to your app’s `Podfile` subspecs: [source,ruby] ---- -pod 'mobilePaymentSDK/Blik', '~> {{version}}' +pod 'Getnet/Blik', '~> {{version}}' ---- [#MobilePaymentSDK_iOS_Blik_LevelZero_basic_payment] diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-12-zinia.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-12-zinia.adoc index baa41c75b..63b40441e 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-12-zinia.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-12-zinia.adoc @@ -21,7 +21,7 @@ Add to your app’s `Podfile` subspecs: [source,ruby] ---- -pod 'mobilePaymentSDK/Zinia', '~> {{version}}' +pod 'Getnet/Zinia', '~> {{version}}' ---- [#MobilePaymentSDK_iOS_Zinia_basic_payment] @@ -74,8 +74,8 @@ This is a code example for a basic Zinia payment: let orderItem = SDKPayECOrderItem() orderItem.name = "The Watch" - orderItem.amount = AMOUNT; - orderItem.amountCurrency = .EUR; + orderItem.amount = AMOUNT + orderItem.amountCurrency = .EUR let order = SDKPayECOrder() order.descriptor = "DEMO DESCRIPTOR" @@ -147,7 +147,10 @@ In case shipping address is not provided, billing address will be used as shippi |=== | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/zinia-1.png[Zinia Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/zinia-1-customized.png[Zinia Screen, align=center, width=240, height=420] + | image::images/07-01-02-integrating-mpsdk-on-ios/iOS/zinia-2.png[Zinia Screen, align=center, width=240, height=420] +| image::images/07-01-02-integrating-mpsdk-on-ios/iOS/zinia-2-customized.png[Zinia Screen, align=center, width=240, height=420] |=== //- \ No newline at end of file diff --git a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-13-mb-referencia.adoc b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-13-mb-referencia.adoc index 8ba826d93..0404789fe 100644 --- a/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-13-mb-referencia.adoc +++ b/content/index/integration-guides/mobile-payment-sdk/ios/payment-methods/08-01-01-13-mb-referencia.adoc @@ -21,7 +21,7 @@ Add to your app’s `Podfile` subspecs: [source,ruby] ---- -pod 'mobilePaymentSDK/MBReferencia', '~> {{version}}' +pod 'Getnet/MBReferencia', '~> {{version}}' ---- [#MobilePaymentSDK_iOS_Multibanco_basic_payment] diff --git a/content/index/integration-options/mobile-payment-sdk/07-00-mobile-payment-sdk.adoc b/content/index/integration-options/mobile-payment-sdk/07-00-mobile-payment-sdk.adoc index 02d2085f5..707a72c38 100644 --- a/content/index/integration-options/mobile-payment-sdk/07-00-mobile-payment-sdk.adoc +++ b/content/index/integration-options/mobile-payment-sdk/07-00-mobile-payment-sdk.adoc @@ -58,4 +58,13 @@ It may be more convenient to use <