Mobile
...
Android
Customisation
customising your android integration you can customise the payment experience for the consumer by configuring the following ui behaviour properties in the uiconfiguration object ui configuration you have flexibility on how the payment experience looks to the consumer the uiconfiguration object allows you to enable | disable the address verification service show | hide the amount in the payments widget enable | disable consumers entering the cv2 code show | hide the amount in the payment button enable | disable asking the consumer for their cardholder name enable | disable asking the consumer for their billing information to create the uiconfiguration object ui configuration object import com judopay judokit android uiconfiguration val uiconfiguration = uiconfiguration builder() setavsenabled(true) setshouldpaymentmethodsdisplayamount(true) setshouldpaymentmethodsverifysecuritycode(true) setshouldpaymentbuttondisplayamount(true) setshouldaskforcardholdername(true) setshouldaskforbillinginformation(true) build() //call setuiconfiguration on the judo builder //pass the uiconfiguration object val judo = judo builder(paymentwidgettype payment methods) setuiconfiguration(uiconfiguration) build() setting up an incremental authorisation the incremental authorisation feature allows you to increment the value of your original pre authorisation for scenarios where you need to charge your customer a higher total amount by incrementing the pre authorisation value, you will be able to capture the total amount that you wish to charge your customer when you are ready this feature is not available with all acquirers check with our customer service team, or your account manager for your eligibility to use this the allowincrement flag is part of the main judo config object, and can be set by the setallowincrement function set the setallowincrement flag to true if present = it is automatically applied for preauth requests if no value is provided = false is set by default example judo builder(paymentwidgettype pre auth) (…) setallowincrement(true) build() setting the primary account details it is mandatory for merchants who have an mcc code of 6012 , 6051 and 7299 to submit additional information about the primary account holder in primaryaccountdetails for payment pre authorisation to set the primary account details when using an alternative payment method, see docid\ it3yrnihegsketqtsxgi3 you can also set the primary account details to be sent with the transaction to set the primary account details call the setprimaryaccountdetails on the judo builder setting primary account details val primaryaccountdetails = primaryaccountdetails builder() setname("example name") setaccountnumber("example account number") setdateofbirth("example date") setpostcode("example postcode") build() val judo = judo builder(paymentwidgettype card payment) setprimaryaccountdetails(primaryaccountdetails) build() changing the default supported card networks you can select the card networks you want to support to select the supported card networks set the setsupportedcardnetworks on the judo builder with an array of cardnetwork values val networks = arrayof(cardnetwork visa, cardnetwork mastercard) val judo = judo builder(paymentwidgettype card payment) setsupportedcardnetworks(networks) build() card network options card network name value visa visa mastercard mastercard amex amex china union pay china union pay jcb jcb maestro maestro diners club international diners club discover discover other other changing the default payment methods by default, all payment methods are displayed in the payments widget (as long as the required parameters are set) however, you can select the payment methods you want to support to select the supported payment methods call the setpaymentmethods on the judo builder pass an array of paymentmethod enum values val paymentmethods = arrayof( paymentmethod card, paymentmethod google pay ) val judo = judo builder(paymentwidgettype card payment) setpaymentmethods(paymentmethods) build() the order you add the payment methods to the array is the order they will be displayed on screen payments widget to set up the payments widget for android change the paymentwidgettype to either payment methods or, pre auth payment methods for example setting up the payments widget val judo = judo builder(paymentwidgettype payment methods) setapitoken("my token") setapisecret("my secret") setissandboxed(true) setjudoid("my judo id") setamount(amount) setreference(reference) setgooglepayconfiguration(googlepayconfiguration) build() //start the judo activity val intent = intent(this, judoactivity class java); intent putextra(judo options, judo); startactivityforresult(intent, judo payment widget request code); android styles and themes styling you have the flexibility of creating your own styling and colour values override the styles xml properties to provide your own styling override the colors xml properties to provide your own colour values for a more detailed explanation on styles and themes see the android https //developer android com/guide/topics/ui/look and feel/themes brand guidelines see the google pay™ https //developers google com/pay/api/android/guides/brand guidelines adding a new language you can add any language you need override some or all of the translations of an existing language the judokit android sdk supports en (default), fr, es generally, language translations follows the android localisation process, utilising " res/values directories " and strings xml files use existing translations to use or test one of judopay's default language translations, change the language on your android device settings → system → language & input → languages the translation will be applied automatically override existing translations identify the sdk string keys the sdk uses string resources defined in its strings xml file you can find the list of all the docid\ j3hohxtgwg6 vhjo9wtzc below to modify the value of an existing string, add a new one with the same key to the strings xml file in your android project you will find this located in the " res/values directory " this will override the sdk value of this string if your app supports multiple languages , ensure you add translations for the overridden string in the appropriate values \<language code> folders for example values fr for french or values es for spanish to add a new language identify the sdk string keys and prepare the translations for all values in the language you wish to add or override you can find the list of all string keys in language customisation in your app’s "res/values directory", create a new folder for the language you want to add make sure you use the correct language and region codes, for example ‘ values es ’ for spanish ‘ values zh rcn ’ for simplified chinese inside the new language folder, create a strings xml file if one does not already exist within the newly created strings xml ensure you provide the translations for all string keys used by the sdk, otherwise the translation may end up incomplete when overriding or adding new string keys, be careful to avoid string key conflicts between the sdk and your app any matching key will cause your app’s value to override the sdk's default value, which could potentially lead to unintended behaviour, or mismatched translations language customisation here you will find a comprehensive list of the sdk string keys, detailing the translation key, language examples (en, es, fr), the component and the relevant screens in the payment flow where these are used payment methods save as default payment method true 168,103,100,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen choose a payment method true 161,112,102,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen no cards added message true 118,117,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen cards true 139,68,77,70,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen displayed when more than one payment method is available add card true 148,93,117,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen card subtitle true 159,77,108,93,136 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card true 166,109,118,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen card title input error message true 171,102,108,97,115 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen save card button true 143,77,78,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used customise card screen visa card title true 142,124,126,124,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen mastercard card title true 193,104,104,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen maestro card title true 165,112,92,89,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen amex card title true 142,119,120,93,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen jcb card title true 142,128,104,101,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen china union pay card title true 211,92,80,89,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen discover card title true 175,114,106,101,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen diners club card title true 192,92,94,92,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen listed card will expire soon message true 139,128,81,81,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen listed card expires soon message true 152,109,100,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen listed card warning message true 111,72,81,63,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen customise card screen card expired warning message true 146,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen connected cards true 173,98,107,111,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen no connected cards warning message true 151,110,110,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card button true 143,77,77,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card title true 183,87,98,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen delete card confirmation messsage true 145,108,101,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen button done true 150,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen edit connected cards mode button edit true 147,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen button cancel true 148,85,82,73,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen billing details screen payment methods screen (delete card dialog) customise card screen 3d secure screen cancel button you will pay true 150,111,117,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used payment methods screen card details check card true 139,107,105,87,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details (check card) screen billing details (check card) screen save card true 137,92,132,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details (save card) screen card number hint true 138,114,93,92,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card number input error message true 188,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen card network not supported message true 153,110,115,120,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen visa not supported message true 160,92,101,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen mastercard not supported message true 179,108,103,108,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen maestro not supported message true 181,103,101,86,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen amex not supported message true 155,103,103,106,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen discover not supported message true 164,95,101,103,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen china union pay not supported message true 139,115,108,116,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen jcb not supported message true 156,93,101,93,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen diners club not supported message true 144,105,104,105,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name hint true 121,98,112,124,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name required error message true 142,102,99,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name too short error message true 137,116,110,110,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cardholder name special characters error message true 147,121,115,114,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen date hint true 143,74,81,80,104 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen expiry date input error message true 153,106,114,133,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cvv hint true 143,77,107,66,109 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen cvv input error message true 142,87,112,95,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen country list uk true 142,73,91,124,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off country list usa true 142,92,114,88,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off country list canada true 163,92,91,78,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off country list other true 157,92,77,69,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off card continue button true 156,93,93,93,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when billing details is the next screen visa security code input error message true 138,100,109,92,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen mastercard security code input error message true 173,97,113,92,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen amex security code input error message true 130,102,116,123,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen china union pay security code input error message true 137,100,112,90,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen jcb security code input error message true 129,85,118,89,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen footer encryption text true 154,129,150,131,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen billing details billing details title true 223,87,79,83,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen email hint true 143,78,71,66,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen email input error message true 157,120,112,118,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen country hint true 153,76,71,61,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen automaticaly replaced by the default country when the screen is opened country input error message true 153,102,99,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen us state hint true 158,77,75,73,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is us us state input error message true 193,88,96,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is us state or union territory hint true 137,106,100,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is india state or union territory input error message true 182,106,100,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is india ca province hint true 137,106,100,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is canada ca province input error message true 162,96,114,110,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is canada province or region hint true 137,106,100,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is china province or region input error message true 137,106,100,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen visible when the country selected is china phone country code hint true 234,68,68,84,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen phone country code input error message true 148,118,115,117,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen mobile number hint true 159,84,82,75,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen mobile number input error message true 160,102,96,96,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen address line 1 hint true 210,81,78,80,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen address input error message true 173,117,108,109,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen add address line button true 184,93,91,96,124 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen address line 2 hint true 208,77,80,79,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen address line 3 hint true 207,80,78,82,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen city hint true 142,78,72,70,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen city input error message true 148,118,110,112,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen postcode hint true 165,85,120,104,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen postcode input error message true 172,90,120,115,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off billing details screen zip code input error message true 139,118,119,102,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card entry screen if the address verification service feature is on , and the request for billing details is off billing details screen pay now button true 111,103,104,103,110 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen when billing details are not going to be displayed as the next screen billing details screen payment methods screen pay amount button true 137,75,97,78,170 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used card details screen billing details screen display amount on button ui option enabled secure checkout verification true 175,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used 3ds (3d secure) screen back button true 111,92,93,98,101 unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type unhandled content type where used billing details screen