From 0dda94ea6c39c7b20f82b6a06a37ca9b63af7518 Mon Sep 17 00:00:00 2001 From: arebra Date: Thu, 15 Feb 2024 15:15:45 +0100 Subject: [PATCH] DX-2338: Added first and last name to frictionless payments section --- _includes/frictionless-payments.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/_includes/frictionless-payments.md b/_includes/frictionless-payments.md index 345a4e10bb..4cb41d7628 100644 --- a/_includes/frictionless-payments.md +++ b/_includes/frictionless-payments.md @@ -75,6 +75,8 @@ the better. "payer": { "email": "olivia.nyhuus@payex.com", "msisdn": "+4798765432", + "firstName": "Olivia", + "lastName": "Nyhuus", "workPhoneNumber" : "+4787654321", "homePhoneNumber" : "+4776543210", "shippingAddress": { @@ -152,7 +154,9 @@ the better. | :---- | :--- | :---------- | | {% f payer %} | `object` | The payer object. | | {% f email %} | `string` | Payer's registered email address. | -| {% f msisdn %} | `string` | Payer's registered mobile phone number. | +| {% f msisdn %} | `string` | Payer's registered mobile phone number. | +| {% f firstname %} | `string` | Payers's first name. Please note that this is not the `addressee` or from `shippingAddress`, as they might not be the same as the payer. | +| {% f lastname %} | `string` | Payers's last name. Please note that this is not the `addressee` or `lastName` from `shippingAddress`, as they might not be the same as the payer. | | | {% f homePhoneNumber %} | `string` | Payer's registered home phone number. | | {% f workPhoneNumber %} | `string` | Payer's registered work phone number. | | {% f shippingAddress %} | `object` | The shipping address object related to the `payer`. | @@ -162,6 +166,14 @@ the better. | {% f zipCode, 2 %} | `string` | Payer's zip code. | | {% f city, 2 %} | `string` | Payer's city of residence. | | {% f countryCode, 2 %} | `string` | Country Code for the country of residence. | +| {% f billingAddress %} | `object` | The billing address object containing information about the payer's billing address. | +| {% f firstName %} | `string` | The payer's first name. | +| {% f lastName %} | `string` | The payer's last name. | +| ︎ {% f streetAddress %} | `string` | The payer'a street address. Maximum 50 characters long. | +| {% f coAddress %} | `string` | The payer's CO-address (if used). | +| {% f zipCode %} | `string` | The postal number (ZIP code) of the payer. | +| {% f city %} | `string` | The city of the payer. | +| {% f countryCode %} | `string` | `SE`, `NO`, or `FI`. | {% endif %}