File tree 2 files changed +8
-0
lines changed
affirm/src/main/java/com/affirm/android
2 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,8 @@ private AffirmConstants() {
88
88
static final String CHECKOUT_CAAS_EXTRA = "checkout_caas_extra" ;
89
89
static final String CHECKOUT_MONEY = "checkout_money" ;
90
90
static final String CHECKOUT_CARD_AUTH_WINDOW = "checkout_card_auth_window" ;
91
+ static final String CHECKOUT_META = "meta" ;
92
+ static final String CHECKOUT_META_LOCALE = "locale" ;
91
93
static final String CREDIT_DETAILS = "credit_details" ;
92
94
static final String VCN_REASON = "vcn_reason" ;
93
95
static final String NEW_FLOW = "new_flow" ;
Original file line number Diff line number Diff line change 25
25
import static com .affirm .android .AffirmConstants .CHECKOUT ;
26
26
import static com .affirm .android .AffirmConstants .CHECKOUT_HEADER_AFFIRM_LOCALE ;
27
27
import static com .affirm .android .AffirmConstants .CHECKOUT_HEADER_COUNTRY_CODE ;
28
+ import static com .affirm .android .AffirmConstants .CHECKOUT_META ;
29
+ import static com .affirm .android .AffirmConstants .CHECKOUT_META_LOCALE ;
28
30
import static com .affirm .android .AffirmConstants .CHECKOUT_PATH ;
29
31
import static com .affirm .android .AffirmConstants .MERCHANT ;
30
32
import static com .affirm .android .AffirmConstants .METADATA ;
@@ -193,6 +195,10 @@ public JsonObject body() {
193
195
checkoutJson .add (MERCHANT , merchantJson );
194
196
checkoutJson .addProperty (API_VERSION_KEY , API_VERSION_VALUE );
195
197
198
+ JsonObject metaJson = new JsonObject ();
199
+ metaJson .addProperty (CHECKOUT_META_LOCALE , AffirmPlugins .get ().locale ());
200
+ checkoutJson .add (CHECKOUT_META , metaJson );
201
+
196
202
// Need to set `platform_type` & `platform_affirm` by default
197
203
JsonObject metadataJson = checkoutJson .getAsJsonObject (METADATA );
198
204
if (metadataJson == null ) {
You can’t perform that action at this time.
0 commit comments